录制视频并发布到服务器然后流式传输,始终获取AVPlayerItemTimeJumpedNotification然后AVPlayerItemPlaybackStalledNotification

时间:2014-05-09 10:43:22

标签: ios avfoundation

我正在使用AVFoundation录制视频,然后上传到服务器,并使用AVPlayer将其流式播放,但总是收到这两个错误通知,我的输出设置是否有任何问题

NSDictionary *settings = @{AVVideoCodecKey : AVVideoCodecH264,
                               AVVideoWidthKey : @(480),
                               AVVideoHeightKey : @(480),
                               AVVideoScalingModeKey : AVVideoScalingModeResizeAspectFill,
                               AVVideoCompressionPropertiesKey:@{
                                       AVVideoAverageBitRateKey : @(480*480*11.4),
                                       AVVideoMaxKeyFrameIntervalKey : @(24)
                                       }
                               };

但我可以在本地使用AVPlayer(在iPhone中的意思)

0 个答案:

没有答案