开发者

Using LAME encoder in an xcode project

开发者 https://www.devze.com 2022-12-20 03:29 出处:网络
Tasked with converting wav 开发者_如何学JAVAto mp3 in my mac program, I\'ve downloaded and compiled the LAME encoder. I was wondering how I then use it in my xcode project? Previous 3rd party librarie

Tasked with converting wav 开发者_如何学JAVAto mp3 in my mac program, I've downloaded and compiled the LAME encoder. I was wondering how I then use it in my xcode project? Previous 3rd party libraries have been in the form of a framework, but LAME just produces a dylib.

Thank you.


The use of a dynamic library is similar to a Framework Apple doc on dynamic libraries

The library will need to be in a known place

In the target build options set the header and library search paths. To use the library drag it into Xcode (These set the -I -L and -l options to the compiler)

0

精彩评论

暂无评论...
验证码 换一张
取 消