2
我玩視頻從網絡與AVPlayerLayer
:iPhone音頻均衡器
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和蘋果開發者計劃資源中搜索並記錄了這一點,但沒有發現任何內容。 我還注意到有些應用程序具有此功能,但僅適用於iOS 6.1。
這個問題的任何幫助?蘋果是否有內置的東西,或者它是非蘋果的來源?