AVPlayerItemVideoOutput 是 AVFoundation 中 AVPlayerItemOutput 的子类,我可以获取像素缓冲区格式的视觉数据并进行一些处理。 (通过copyPixelBufferForItemTime
但是,没有相应的 AVPlayerItemAudioOutput 存在。如何处理音频数据?
我必须使用 AVAssetReader 类来获得这个吗?
Best Answer-推荐答案 strong>
这是一个很好的问题。 -[AVPlayerItem addOutput:] 提到了音频,但在 AVPlayerItemOutput.h 中找不到任何内容(除非您打算通过 AVPlayerItemLegibleOutput 获取音频 类 - 我只是在开玩笑,作为一个出售 CMSampleBuffers 的类,我认为一个假设的 AVPlayerItemAudioOutput 看起来很像这样)。
所以我不知道 AVPlayerItemAudioOutput 在哪里,但是你可以使用 AVAssetReader 来获取音频数据。
但是,如果您已经在使用 AVPlayer ,那么您最轻松的方法是使用 MTAudioProcessingTap 来扮演假设的 AVPlayerItemAudioOutput 的角色.
您可以在 AVPlayer 的 currentItem 的 audioMix 的 inputParameters 上添加一个点击以接收(甚至修改)您选择的音轨的音频。
可能更容易阅读 some example code而不是解析我刚刚写的内容。
关于ios - 为什么 AVFoundation 中不存在 AVPlayerItemAudioOutput?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29431522/
|