码迷,mamicode.com
首页 >  
搜索关键字:avformat_open_input    ( 21个结果
在iOS平台使用ffmpeg解码h264视频流(转)
在iOS平台使用ffmpeg解码h264视频流,有需要的朋友可以参考下。对于视频文件和rtsp之类的主流视频传输协议,ffmpeg提供avformat_open_input接口,直接将文件路径或URL传入即可打开。读取视频数据、解码器初始参数设置等,都可以通过调用API来完成。但是对于h264流,没...
分类:移动开发   时间:2015-08-25 13:28:15    阅读次数:444
(转)FFmpeg源代码简单分析:avformat_open_input()
目录(?)[+]=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图 -解码FFmpeg源代码结构图 -编码【通用】FFmpeg源代码简单分析:av_register_al...
分类:其他好文   时间:2015-06-10 15:26:03    阅读次数:162
avformat_open_input() always return -13
我在调用avformat_open_input的时候,一直返回-13错误,如下代码: const char *url = "/mnt/sdcard/xpg.mp4"; av_register_all(); AVFormatContext *pFormatCtx = NULL; int ret = avformat_open...
分类:其他好文   时间:2015-05-20 11:31:43    阅读次数:692
【FFmpeg】ffplay播放rtsp视频流花屏问题 (转)
问题描述:ffplay播放rtsp视频流时,播放过程中随机出现花屏现象。 基本流程学习:阅读ffplay源码,熟悉其播放rtsp视频流的基本流程。 在ffplay源码阅读和分析的基础上,画出了其播放rtsp的函数调用关系,如下图所示: avformat_open_input函数根据输入的文件名,与r...
分类:其他好文   时间:2015-05-16 20:29:31    阅读次数:193
FFmpeg源代码简单分析:avformat_close_input()
本文简单分析FFmpeg的avformat_close_input()函数。该函数用于关闭一个AVFormatContext,一般情况下是和avformat_open_input()成对使用的。...
分类:其他好文   时间:2015-03-07 11:36:51    阅读次数:281
FFMPEG类库打开流媒体的方法(传参数)
使用ffmpeg类库进行开发的时候,打开流媒体(或本地文件)的函数是avformat_open_input()。其中打开网络流的话,前面要加上函数avformat_network_init()。一般情况下,只要传入流媒体的url就可以了。但是在打开某些流媒体的时候,可能需要附加一些参数。例如在播放中...
分类:其他好文   时间:2015-03-06 14:11:34    阅读次数:175
FFmpeg源代码简单分析:avformat_open_input()
本文简单分析FFmpeg中一个常用的函数:avformat_open_input()。该函数用于打开多媒体数据并且获得一些相关的信息。...
分类:其他好文   时间:2015-03-05 00:19:22    阅读次数:383
ffmpeg设置avformat_open_input( )超时 -stimeout
ffmpeg用avformat_open_input()解析网络流时,默认是阻塞的。当遇到解析错误的网络流时,会导致该函数长时间不返回。为此可以设置ffmpeg的-stimeout 的参数,要注意 -stimeout的单位是us 微妙。用法就是设置在解析的 url 之前 (这里设置超时为5秒)即:“...
分类:其他好文   时间:2015-01-12 16:12:47    阅读次数:2566
ffmpeg解码文件
只贴出部分代码,重在说明过程 av_register_all(); AVFormatContext* fctx = avformat_alloc_context(); int err = avformat_open_input(&fctx, "b.avi", NULL, NULL); printf("open input:%d\n", err); err = avformat_fi...
分类:其他好文   时间:2014-12-01 14:23:56    阅读次数:184
ffmpeg中对AVInputFormat结构体中函数的调用
http://blog.csdn.net/junllee/article/details/7722605opt_input_file()-> avformat_open_input()-> init_input()-> av_probe_input_format()-> av_probe_inpu....
分类:其他好文   时间:2014-08-04 17:10:37    阅读次数:230
21条   上一页 1 2 3 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!