- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 AVPlayer 在 iPhone 设备上播放直播。另外我想从这个流中获取 CVPixelBufferRef 供下次使用。
我使用Apple guide用于创建播放器。目前,使用本地存储的视频文件,此播放器工作得很好,当我尝试播放此 AppleSampleStremURL - http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8
- 它的工作正弦也。
当我想使用 rtsp://播放流时出现问题,如下所示:rtsp://192.192.168.1:8227/TTLS/Streaming/channels/2?videoCodecType=H.264
代码 - 几乎全部使用 Apple 提供的 guid 完成,但无论如何:
准备播放资源
- (void)initialSetupWithURL:(NSURL *)url
{
NSDictionary *assetOptions = @{ AVURLAssetPreferPreciseDurationAndTimingKey : @YES,
AVURLAssetReferenceRestrictionsKey : @(AVAssetReferenceRestrictionForbidNone)};
self.urlAsset = [AVURLAsset URLAssetWithURL:url options:assetOptions];
}
准备播放器
- (void)prepareToPlay
{
NSArray *keys = @[@"tracks"];
__weak SPHVideoPlayer *weakSelf = self;
[weakSelf.urlAsset loadValuesAsynchronouslyForKeys:keys completionHandler:^{
dispatch_async(dispatch_get_main_queue(), ^{
[weakSelf startLoading];
});
}];
}
- (void)startLoading
{
NSError *error;
AVKeyValueStatus status = [self.urlAsset statusOfValueForKey:@"tracks" error:&error];
if (status == AVKeyValueStatusLoaded) {
self.assetDuration = CMTimeGetSeconds(self.urlAsset.duration);
NSDictionary* videoOutputOptions = @{ (id)kCVPixelBufferPixelFormatTypeKey : @(kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange)};
self.videoOutput = [[AVPlayerItemVideoOutput alloc] initWithPixelBufferAttributes:videoOutputOptions];
self.playerItem = [AVPlayerItem playerItemWithAsset: self.urlAsset];
[self.playerItem addObserver:self
forKeyPath:@"status"
options:NSKeyValueObservingOptionInitial
context:&ItemStatusContext];
[self.playerItem addObserver:self
forKeyPath:@"loadedTimeRanges"
options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld
context:&ItemStatusContext];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidReachEnd:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:self.playerItem];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didFailedToPlayToEnd)
name:AVPlayerItemFailedToPlayToEndTimeNotification
object:nil];
[self.playerItem addOutput:self.videoOutput];
self.assetPlayer = [AVPlayer playerWithPlayerItem:self.playerItem];
[self addPeriodicalObserver];
NSLog(@"Player created");
} else {
NSLog(@"The asset's tracks were not loaded:\n%@", error.localizedDescription);
}
}
此处出现问题 - AVKeyValueStatus status = [self.urlAsset statusOfValueForKey:@"tracks"error:&error];
- 此行带有 rtsp://URL 返回 AVKeyValueStatusFailed
有错误:
Printing description of error:
Error Domain=AVFoundationErrorDomain Code=-11800
"The operation could not be completed"
UserInfo=0x7fd1ea5a8a10 {NSLocalizedFailureReason=An unknown error occurred (-12936),
NSLocalizedDescription=The operation could not be completed,
NSURL=rtsp://192.168.1.168:8556/PSIA/Streaming/channels/2?videoCodecType=H.264,
NSUnderlyingError=0x7fd1ea53f830 "The operation couldn’t be completed.
(OSStatus error -12936.)"}
我还寻找问题:
fileURLWithPath
返回不正确的 URL,例如:rtsp://192.168.1.168:8556/PSIA/Streaming/channels/2?videoCodecType=H.264 --file:///
- 所以我猜不正确[AVPlayer playerWithPlayerItem:playerItem]
和 [AVPlayer playerWithURL:url]
- 没有任何改变。还可以尝试在 initialSetupWithURL
中为 AVAsset 设置不同的设置(请参阅上面的方法实现)。那么,问题AVPlayer支持播放rtsp://流吗?如果是,有人可以提供正确用法的示例吗? Nad 我在代码中做错了什么?如果 AvPlayer 不支持 rtsp://可能存在一些替代解决方案?
最佳答案
您尝试过 MobileVLCKit
吗?这真的很简单而且效果很好!我写了一个small example here
如果您想尝试一下,只需在终端中输入 pod try ONVIFCamera
即可。
具体操作方法如下:
var mediaPlayer = VLCMediaPlayer()
// Associate the movieView to the VLC media player
mediaPlayer.drawable = self.movieView
let url = URL(string: "rtsp://IP_ADDRESS:PORT/params")
let media = VLCMedia(url: url)
mediaPlayer.media = media
mediaPlayer.play()
关于iphone - rtsp://liveStream 与 AVPlayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29371400/
我是一名优秀的程序员,十分优秀!