AVPlayer 问题,同时直播 (iOS)
Posted
技术标签:
【中文标题】AVPlayer 问题,同时直播 (iOS)【英文标题】:AVPlayer Questions, while Live Streaming (iOS) 【发布时间】:2011-03-08 19:07:56 【问题描述】:我有 AVPlayer 问题。
1.如何控制它的音量?
2.如何知道AVPlayer是否因为连接不良而重新加载音乐,我是否有一些迹象?
【问题讨论】:
你能告诉我你是如何使用 AVPlayer 播放音乐的吗?? 在服务器上使用苹果http直播指南。 【参考方案1】:AVPlayer
使用系统音量,因此如果您需要为此提供控制,可以使用MPVolumeView
,它为您提供音量控制滑块。
对于音频衰减,您可以使用AVAudioMix
。这是一些代码:
//given an AVAsset called asset...
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:asset];
id audioMix = [[AVAudioMix alloc] init];
id volumeMixInput = [[AVMutableAudioMixInputParameters alloc] init];
//fade volume from muted to full over a period of 3 seconds
[volumeMixInput setVolumeRampFromStartVolume:0 toEndVolume:1 timeRange:
CMTimeRangeMake(CMTimeMakeWithSeconds(0, 1), CMTimeMakeWithSeconds(3, 1))];
[volumeMixnput setTrackID:[[asset tracks:objectAtIndex:0] trackID]];
[audioMix setInputParameters:[NSArray arrayWithObject:volumeMixInput]];
[playerItem setAudioMix:audioMix];
您还可以在给定时间突然设置混音的音量:
[volumeMixInput setVolume:.5 atTime:CMTimeMakeWithSeconds(15, 1)];
希望这会有所帮助。这个 API 肯定不明显。我强烈建议您观看名为Discovering AV Foundation 的 WWDC 10 视频。太棒了。
【讨论】:
刚刚意识到这只能回答您的音量问题。最好单独发布。 请注意,根据 Apple,此方法仅适用于基于 file 的资产。 developer.apple.com/library/content/qa/qa1716/_index.html以上是关于AVPlayer 问题,同时直播 (iOS)的主要内容,如果未能解决你的问题,请参考以下文章
在 iOS 上使用 avaudioengine 会破坏 avplayer