在 xcode 项目中使用 LAME 编码器
我的任务是在我的 Mac 程序中将 wav 转换为 mp3,我下载并编译了 LAME 编码器。我想知道如何在我的 xcode 项目中使用它?以前的第3方库都是框架的形式,但LAME只是产生一个dylib。
谢谢。
Tasked with converting wav to 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
动态库的使用类似于框架 关于动态库的 Apple 文档
该库需要位于已知位置
在目标构建选项中设置标头和库搜索路径。要使用该库,请将其拖到 Xcode 中(这些为编译器设置 -I -L 和 -l 选项)
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)