E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
AVformat
ffmpeg 从内存中读取数据(或将数据输出到内存)
ffmpeg一般情况下支持打开一个本地文件,例如“C:\test.avi” 或者是一个流媒体协议的URL,例如“rtmp://222.31.64.208/vod/test.flv” 其打开文件的函数是
avformat
·
2015-10-27 13:46
ffmpeg
mingw下使用vs2015编译器编译FFMPEG
由于工作原因,需要在MINGW下编译出一个单独完整的FFMPEG功能库(而不是avcodec/
avformat
等很多库)提供给WINDOWSUI使用。
anbinger2013
·
2015-10-24 00:00
Mingw
FFMPEG
FFMPEG_avi转码到mp4(aac+h264)源码
#include <ffmpeg/avcodec.h>#include <ffmpeg/
avformat
.h>#include <stdio.h>#include &
·
2015-10-21 10:11
ffmpeg
FFMPEG 解码和编码(编码mjpeg)
初始化编码器和解码器 av_register_all(); if(
avformat
_open_input(&pFormatCtx,filename,NULL,NULL)!
blackBox
·
2015-10-08 14:00
android下的网络摄像头服务器——使用rtsp协议
使用ffmpeg,在运行时,在
avformat
_open_input()里出
fu851523125
·
2015-09-11 12:00
ffmpeg综合应用示例(一)——摄像头直播
要使用libavdevice的相关函数,首先需要注册相关组件avdevice_register_all();接下来我们要列出电脑中可用的dshow设备AVFormatContext*pFmtCtx=
avformat
_all
zhouzxi
·
2015-08-29 12:00
ffmpeg
RTMP
摄像头
ffmpeg.exe 笔记
open_input_file:
avformat
_open_input打开了输入文件av_dict_get获取信息setup_find_stream_info_optsavformat_find_stream_infocodec
明月惊鹊
·
2015-08-18 16:00
ffmpeg 自定义数据来源, 可以是文件,可以是内存,可以是网络, 爱咋的咋的
. // #include "stdafx.h" extern "C" { #include }; #pragma comment(lib, "
avformat
.lib") int ReadFunc(
明月惊鹊
·
2015-08-06 11:00
【FFmpeg】ffplay播放rtsp视频流花屏问题
在ffplay源码阅读和分析的基础上,画出了其播放rtsp的函数调用关系,如下图所示:
avformat
_open_input函数根据输入的文件名,与rtsp
fireroll
·
2015-07-28 19:00
ffmpeg关于
avformat
_write_header问题
最近做转码遇到一些问题,先贴个代码在说明:intinit_mux() { inti=0; /*allocatetheoutputmediacontext*/
avformat
_alloc_output_context2
zhuweigangzwg
·
2015-07-21 19:00
ffmpeg
avformat
_find_stream_info
视频解码为H264时的跟踪:1. for(;;)中count执行了206次才退出2. 第206次退出的地方:if(st->time_base.den>0&&av_rescale_q(codec_info_duration[st->index],st->time_base,AV_TIME_BASE_Q)>=ic->max_analyze_duration) break; 满足了av_resca
u012681083
·
2015-06-19 15:00
ffmpeg
ffmpeg源码跟踪笔记之
avformat
_find_stream_info
1、函数介绍位于libavformat/
avformat
.h:/***Readpacketsofamediafiletogetstreaminformation.This*isusefulforfileformatswithnoheaderssuchasMPEG.This
dancing_night
·
2015-06-09 17:06
ffmpeg
ffmpeg学习笔记
ffmpeg的demux流程简析
【
avformat
_open_input流程】这里我只说根据字节流来分析的过程,而不管扩展名啊什么的。
a1875566250
·
2015-06-07 01:00
ffmepg 指定RTSP网络连接模式UDP还是TCP
AVFormatContext *formatCtx = NULL; formatCtx =
avformat
_alloc_context
·
2015-05-25 17:00
tcp
Error LNK2001 无法解析的外部符号 xxxxx
SDL1.2版本的库,现在使用的是2.0版本,在代码中如下引用头文件://包含库 extern"C" { #include"libavcodec/avcodec.h" #include"libavformat/
avformat
.h
GAMEloft9
·
2015-05-22 14:00
avformat
_open_input() always return -13
我在调用
avformat
_open_input的时候,一直返回-13错误,如下代码:constchar*url="/mnt/sdcard/xpg.mp4"; av_register_all(); AVFormatContext
Jerikc
·
2015-05-20 10:00
简单的ffmpeg视频转码,只处理视频
1、简单说下整体流程用
avformat
_open_input打开输入文件上下文,再用
avformat
_find_stream_info找到流信息,为输出分配AVFormatContext空间,然后根据流信息找到视频流
dancing_night
·
2015-05-07 12:48
c++
ffmpeg
ffmpeg学习笔记
qt使用ffmpeg显示rtsp视频流
include #include #include #include extern"C"{ #pragmacomment(lib,"avcodec.lib") #pragmacomment(lib,"
avformat
.lib
xxq123321
·
2015-03-09 17:00
FFmpeg源代码简单分析:
avformat
_write_header()
=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图-解码FFmpeg源代码结构图-编码【通用】FFmpeg源代码简单分析:av_register_all()FFmpeg源代码简单分析:avcodec_register_all()FFmpeg源代码简单分析:内存的分配和释
leixiaohua1020
·
2015-03-08 18:00
源代码
ffmpeg
封装格式
文件头
FFmpeg源代码简单分析:
avformat
_close_input()
=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图-解码FFmpeg源代码结构图-编码【通用】FFmpeg源代码简单分析:av_register_all()FFmpeg源代码简单分析:avcodec_register_all()FFmpeg源代码简单分析:内存的分配和释
leixiaohua1020
·
2015-03-07 10:00
函数
源代码
ffmpeg
关闭
AVFormatContext
FFMPEG类库打开流媒体的方法(传参数)
使用ffmpeg类库进行开发的时候,打开流媒体(或本地文件)的函数是
avformat
_open_input()。
·
2015-03-06 12:00
ffmpeg
FFmpeg源代码简单分析:
avformat
_find_stream_info()
=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图-解码FFmpeg源代码结构图-编码【通用】FFmpeg源代码简单分析:av_register_all()FFmpeg源代码简单分析:avcodec_register_all()FFmpeg源代码简单分析:内存的分配和释
leixiaohua1020
·
2015-03-06 11:00
源代码
ffmpeg
AVFormatContext
媒体信息
FFmpeg源代码简单分析:
avformat
_open_input()
=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图-解码FFmpeg源代码结构图-编码【通用】FFmpeg源代码简单分析:av_register_all()FFmpeg源代码简单分析:avcodec_register_all()FFmpeg源代码简单分析:内存的分配和释
leixiaohua1020
·
2015-03-05 00:00
源代码
ffmpeg
AVFormatContext
打开媒体
AVInputFormat
FFmpeg源代码简单分析:
avformat
_alloc_output_context2()
=====================================================FFmpeg的库函数源代码分析文章列表:【架构图】FFmpeg源代码结构图-解码FFmpeg源代码结构图-编码【通用】FFmpeg源代码简单分析:av_register_all()FFmpeg源代码简单分析:avcodec_register_all()FFmpeg源代码简单分析:内存的分配和释
leixiaohua1020
·
2015-03-03 22:00
ffmpeg
初始化
输出
源代码分析
AVFormatContext
ffmpeg, demux, avformt_find_stream_info,解决卡住的问题
可以通过设置AVFotmatContext的probesize和max_analyze_duration属性进行调节:.............if(
avformat
_open_input(&(handle
特招
·
2015-01-31 18:56
ffmpeg
ffmpeg
由ffmpeg中
avformat
模块中的 URL_SCHEME_CHARS 看 strspn( ) 的妙用
在ffmpeg的
avformat
模块中avio.c 对 URL_SCHEME_CHARS 的定义: #define URL_SCHEME_CHARS
·
2015-01-13 16:00
Scheme
ffmpeg设置
avformat
_open_input( )超时 -stimeout
ffmpeg用
avformat
_open_input()解析网络流时,默认是阻塞的。 当遇到解析错误的网络流时,会导致该函数长时间不返回。
·
2015-01-12 14:00
timeout
ffmepg 指定RTSP网络连接模式UDP还是TCP
AVFormatContext *formatCtx = NULL; formatCtx =
avformat
_alloc_context(); AVDictionary* options =
vbLittleBoy
·
2014-12-10 15:00
FFMPEG类库打开流媒体的方法(需要传参数的时候)
使用ffmpeg类库进行开发的时候,打开流媒体(或本地文件)的函数是
avformat
_open_input()。其中打开网络流的话,前面要加上函数
avformat
_network_init()。
vbLittleBoy
·
2014-12-10 15:00
ffmpeg解码文件
只贴出部分代码,重在说明过程av_register_all(); AVFormatContext*fctx=
avformat
_alloc_context(); interr=
avformat
_open_input
tobacco5648
·
2014-12-01 13:00
利用ffmpeg实现最简单的视频播放功能
*mail:
[email protected]
*/ #include extern"C"{ #include"libavcodec/avcodec.h" #include"libavformat/
avformat
.h
rootusers
·
2014-11-12 14:00
框架
ffmpeg
多媒体
sdl
FFmpeg API 变更记录
但是最近的版本中,av_find_stream_info()函数已经无法使用了,取而代之的是
avformat
_fin
leixiaohua1020
·
2014-11-11 17:00
开发
api
ffmpeg
变更
ffmpeg新版与旧版数据结构不同 持续更新.....
avcodec_init->avcodec_register_allav_open_input_file->
avformat
_open_inputAVFormatContext.file_size->avio_size
zwlq1314521
·
2014-11-06 14:00
ffmpeg源码分析之
avformat
_alloc_context
AVFormatContext必须初始化为NULL或者用
avformat
_alloc_context()进行初始化。原因在于:av_regeister_all()中:if(!s&&!
rootusers
·
2014-10-31 16:00
ffmpeg
FFmpeg H264码流分析播放
1)h264_probe函数剖析函数调用
avformat
_open_inputs->iformat->read_header(s)函数说明/**ReadtheformatheaderandinitializetheAVFormatContextstructure.Return0ifOK
fengyuzaitu
·
2014-10-31 14:17
FFmpeg
H264
FFmpeg
undefined reference to `av_close_input_file' 原因分析
如果只是想找解决方法,我先在这总结一下:ffmpeg2.4.2默认是不支持av_close_input_file函数的了,换成了
avformat
_close_input函数解决方法是使用ffmpeg2.2.9
wonxxx
·
2014-10-27 09:00
undefined
解决方法
reference
ffmpeg2.4.2
ffmpeg源代码分析之
avformat
_open_input
运行
avformat
_open_input函数是ffmpeg初始化之后做的第一件事。
rootusers
·
2014-10-16 10:00
ffmpeg
transport
pFormatCtx=
avformat
_alloc_context();//有三种传输方式:tcpudp_multicastudp,强制采用tcp传输AVDictionary*options=NULL;
ww506772362
·
2014-10-09 13:00
2——FFMPEG之协议(文件)操作----AVIOContext, URLContext, URLProtocol
协议操作对象结构:协议(文件)操作的顶层结构是AVIOContext,这个对象实现了带缓冲的读写操作;FFMPEG的输入对象
AVFormat
的pb字段指向一个AVIOContext。
finewind
·
2014-09-24 08:00
增加一个
AVFormat
格式:PES
我们首先来看大致一个格式是怎么用到的。lavf公共格式:AVFormatContext{ AVInputFormat*iformat; //输入格式 AVOutputFormat*oformat;//或者输出格式 void*priv_data;//私有上下文 AVIOContext*pb;//输入输出上下文 unsignedintnb_streams;//几路流 AVStream*streams[
deyangliu
·
2014-09-22 21:00
ffmpeg
Codec
AVFormatContext结构体分析
处理视频开始的类,用
avformat
_alloc_context()分配空间 *Exports(de)muxerprivateoptionsiftheyexist. muxe
xwisen
·
2014-08-22 15:00
ffmpeg 从内存中读取数据(或将数据输出到内存)
从内存中读取数据ffmpeg一般情况下支持打开一个本地文件,例如“C:\test.avi”或者是一个流媒体协议的URL,例如“rtmp://222.31.64.208/vod/test.flv”其打开文件的函数是
avformat
_open_input
雷霄骅
·
2014-08-16 13:00
数据
内存
ffmpeg
回调
ffmpeg 源代码简单分析 : avcodec_register_all()
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
雷霄骅
·
2014-08-16 13:00
源代码
ffmpeg
解码器
编码器
FFMPEG源码分析:
avformat
_open_input()(媒体打开函数)
本文分析了FFMPEG中的媒体打开函数
avformat
_open_input()//参数ps包含一切媒体相关的上下文结构,有它就有了一切,本函数如果打开媒体成功, //会返回一个AVFormatContext
雷霄骅
·
2014-08-16 13:00
源码
ffmpeg
打开
ffmpeg 源代码简单分析 : av_read_frame()
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
雷霄骅
·
2014-08-16 13:00
源代码
ffmpeg
av_read_frame
FFMPEG类库打开流媒体的方法(需要传参数的时候)
使用ffmpeg类库进行开发的时候,打开流媒体(或本地文件)的函数是
avformat
_open_input()。其中打开网络流的话,前面要加上函数
avformat
_network_init()。
雷霄骅
·
2014-08-16 13:00
ffmpeg
流媒体
AVDictionary
ffmpeg 源代码简单分析 : avcodec_decode_video2()
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
雷霄骅
·
2014-08-16 13:00
ffmpeg
源代码简单
ffmpeg 源代码简单分析 : av_register_all()
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
雷霄骅
·
2014-08-16 13:00
源代码
分析
ffmpeg
复用
av_register_all
图解FFMPEG打开媒体的函数
avformat
_open_input
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
雷霄骅
·
2014-08-16 13:00
ffmpeg
解码
函数分析
FFmpeg avio_reading.c文件解析
avio_reading.c主要是如何自己处理文件,处理文件流,感觉用处不大最后输出基本信息extern"C"{#include#include#include#include};#pragmacomment(lib,"
avformat
.lib
vbLittleBoy
·
2014-08-15 14:00
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他