我正在使用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。
有关此问题的任何帮助吗?苹果有没有内置的东西,或者它是非苹果来源?
答案 0 :(得分:1)
此Stack Overflow问题的答案提供了几种不同的解决方案:How to make a simple EQ AudioUnit (bass, mid, treble) with iOS?