我正在使用 AVPlayerLayer 播放来自网络的视频:
AVAsset *newAsset = [[AVURLAsset alloc]initWithURL:url options:nil];
AVPlayerItem *newPlayerItem = [[AVPlayerItem alloc]initWithAsset:newAsset];
audioPlayer = [[AVPlayer alloc]initWithPlayerItem:newPlayerItem];
avPlayerLayer = [AVPlayerLayer playerLayerWithPlayer:audioPlayer];
我希望能够将 Audio Equalizer 添加到视频中。类似的东西:
Pop, Flat, Balled, Blues, Classical, Dance, Metal
我在 Google 和 Apple 开发人员计划资源中搜索并提供相关文档,但一无所获。
而且我还注意到有些应用程序有这个功能,但它只适用于iOS 6.1。
对这个问题有帮助吗?苹果有内置的东西还是非苹果的来源?
Best Answer-推荐答案 strong>
这个 Stack Overflow 问题的答案提供了几种不同的解决方案:How to make a simple EQ AudioUnit (bass, mid, treble) with iOS?
关于iPhone 音频均衡器,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/17655862/
|