作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 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
我在谷歌和苹果开发者计划资源中搜索和文档,但没有找到任何东西。而且我也注意到一些应用程序有这个功能,但它只适用于 iOS 6.1。
对这个问题有帮助吗? Apple 是否有内置的东西或者它是非 Apple 来源?
最佳答案
这个 Stack Overflow 问题的答案提供了几种不同的解决方案:How to make a simple EQ AudioUnit (bass, mid, treble) with iOS?
关于iPhone 音频均衡器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17655862/
我是一名优秀的程序员,十分优秀!