iOS使用ffmpeg播放rstp实时监控视频数据流
Posted phlsheji
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS使用ffmpeg播放rstp实时监控视频数据流相关的知识,希望对你有一定的参考价值。
git clone git://github.com/kolyvan/kxmovie.git
cd kxmovie
git submodule update --init
rake
ViewController *vc;
vc = [KxMovieViewController movieViewControllerWithContentPath:path parameters:nil];
[self presentViewController:vc animated:YES completion:nil];
[rtsp @ 0x906cc00] UDP timeout, retrying with TCP
[rtsp @ 0x906cc00] Nonmatching transport in server reply
[rtsp @ 0x906cc00] Could not find codec parameters for stream 0 (Video: h264): unspecified size
Consider increasing the value for the ‘analyzeduration‘ and ‘probesize‘ options
Couldn‘t find stream information
跟踪代码,错误是在avformat_find_stream_info获取流信息失败的时候的时候触发。
if(avformat_find_stream_info(pFormatCtx,NULL) < 0) {
}
……
// Open video file
pFormatCtx = avformat_alloc_context();
//有三种传输方式:tcp
AVDictionary*
options =
av_dict_set(&options, "rtsp_transport", "tcp", 0);
if(avformat_open_input(&pFormatCtx,
[moviePathcStringUsingEncoding:NSASCIIStringEncoding],
}
// Retrieve stream information
if(avformat_find_stream_info(pFormatCtx,NULL) < 0) {
以上是关于iOS使用ffmpeg播放rstp实时监控视频数据流的主要内容,如果未能解决你的问题,请参考以下文章