iOS Opus 编译问题记录

前情提要:

iOS 语音实时转文字方案分析:

方案一:本地通过Speech框架实现,效果很好!
参考这位老兄: Speech语音转文字.
GitHub:https://github.com/OuDuShu/SpeechTest.

方案二:为了训练语音模型,通过AudioQueue录音,通过Opus对pcm编码,通过WebSocket上传后台,返回文字展示

介绍下第二个方案:重点在于Opus编码

iOS下Opus 编译:

https://github.com/chrisballinger/Opus-iOS
https://gitee.com/tian_heng/Opus-iOS
参考链接:
https://www.jianshu.com/p/be8d40b61171
https://www.jianshu.com/p/50107d5bffd2
https://www.jianshu.com/p/5ef917542f2c
https://www.jianshu.com/p/1b50925680a4
http://opus-codec.org/downloads/

iOS下Opus 使用:

https://github.com/JonorZhang/OpusDemo
https://www.jianshu.com/p/ea968b703e7a
https://blog.csdn.net/likui1989/article/details/52515642?locationNum=3&fps=1

实现Demo:

语音转文字Demo

你可能感兴趣的:(iOS开发)