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之读取视频帧
main.cpp代码如下#include"myplayer.h"#include#pragmacomment(lib,"
avformat
.lib")#pragmacomment(lib,"avutil.lib
锐湃
·
2017-11-03 21:19
ffmpeg
ffmpeg调用
avformat
_open_input失败,返回 -2
系统环境ubuntu12.04,开发环境Qt执行程序卡在如下代码段:[objc]viewplaincopyif(
avformat
_open_input(&pFormatCtx,filepath,NULL
锐湃
·
2017-11-03 20:53
ffmpeg
ffmpeg
avformat
_open_input返回失败的解决办法
用ffmpeg做的第一个程序,参考网上的代码,就出现了一些问题,其中
avformat
_open_input返回失败。
锐湃
·
2017-11-03 20:46
ffmpeg
利用ffmpeg读取音乐文件的专辑信息(包括专辑封面图片)
AVFormatContext*fmt_ctx=NULL;AVDictionaryEntry*tag=NULL;av_register_all();if((ret=
avformat
_open_input
tommego
·
2017-11-03 00:00
c++
qt
ffmpeg
linux
04 ffmpeg 从媒体文件解封装,输出YUV420图像
输出AAC声音目前有点问题:输出YUV420很好[root@localhost 04]# cat main.c #include #include "libavformat/
avformat
.h"int
990487026
·
2017-10-30 01:51
解封装
ffmpeg
媒体文件
音视频开发
ffmpeg SDL2.0播放音频
article/details/10528443#include#includeextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
liulinyu1234
·
2017-09-20 20:19
FFmpeg源码剖析-解码:av_read_frame()
av_read_frame()函数位于libavformat/utils.c1.函数概述读取输入流的一帧数据;2.函数调用图3.伪码分析4.代码分析av_read_frame()它的声明(libavformat/
avformat
.h
北雨南萍
·
2017-09-18 23:57
流媒体:
FFmpeg专项
ffmpeg
AVFormat
结构体主要变量
AVFrame是包含码流参数较多的结构体。参考结构体理解:http://www.jianshu.com/p/d109e7ef9749uint8_t*data[AV_NUM_DATA_POINTERS]:解码后原始数据(对视频来说是YUV,RGB,对音频来说是PCM)对于packed格式的数据(例如RGB24),会存到data[0]里面。对于planar格式的数据(例如YUV420P),则会分开成d
lixiangdev
·
2017-08-11 14:21
安卓自定义全能播放器底层代码
文件中实现视频的解码播放:#include"jonesx_videoplayer_VideoPlayer.h" #include"libavcodec/avcodec.h" #include"libavformat/
avformat
.h
dong_18383219470
·
2017-06-06 15:00
Mac系统下ffmpeg+h264+flv编码的android录制屏幕实现2
最后偷懒贴个图build.gradlebuild.gradle忘记上jni文件了,直接走起#include#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
不吃辣的宋仁投
·
2017-05-17 14:08
ffmpeg3.1 加快hls起播速度
在libavformat/hls.c的hls_read_header函数中在
avformat
_open_input之前,对ctx设置probesize例如:pls->ctx->probesize
sauntercloud
·
2017-05-12 15:22
视频
[置顶] FFmpeg总结(八)windows下用ffmpeg获取视频缩略图
ffmpeg命令,如下:验证画面完整性,需要用YUVplayer来打开yuv文件:如下:完整代码: #include"stdafx.h" extern"C" { #include"libavformat\
avformat
.h
hejjunlin
·
2017-04-25 11:00
windows
ffmpeg获取缩略
ffmpeg源码简析(八)解码 av_read_frame(),avcodec_decode_video2(),
avformat
_close_input()
1.av_read_frame()av_read_frame()的作用是读取码流中的音频若干帧或者视频一帧。例如,解码视频的时候,每解码一个视频帧,需要先调用av_read_frame()获得一帧视频的压缩数据,然后才能对该数据进行解码(例如H.264中一帧压缩数据通常对应一个NAL)。通过av_read_packet(***),读取一个包,需要说明的是此函数必须是包含整数帧的,不存在半帧的情况,
小码哥_WS
·
2017-04-24 20:13
ffmpeg
include“libavformat/
avformat
.h” file not found 错误
修改工程的HeaderSearchPaths,要不然会报include“libavformat/
avformat
.h”filenotfound错误根据LibrarySearchPaths中的lib的路径
焉逢12
·
2017-04-21 11:22
Avformat
_open_input函数的分析之--HTTP篇
ffurl_connect函数http_open函数http_open_cnx_internal函数前段时间在做直播的优化,主要是优化首屏时间,因为直播播放器大部分都会采用ffmpeg来处理,所以就会用到
avformat
_open_input
baohonglai
·
2017-04-05 22:11
IOS音视频开发
ffmpeg
FFmpeg中函数
avformat
_open_input()(含URL解析文件格式)
摘要:
avformat
_open_input的源码分析版本:FFMPEG代码为3.2release版本,输入为flv文件。
Hosea14
·
2017-04-03 09:14
项目总结
音视频流媒体
第一个ffmpeg程序,实现播放视频
#include"stdafx.h"extern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h"//新版里的图像转换结构需要引入的头文件
cqltbe131421
·
2017-03-21 15:20
ffmpeg
ffmpeg--tcp
TCP代码分析:#include"
avformat
.h"#include"libavutil/avassert.h"#include"libavutil/parseutils.h"#include"libavutil
茄子船长
·
2017-03-14 21:30
解决安卓调用ffmpeg函数
avformat
_open_input进行转码出现打不开文件
安卓下通过jni调用ffmpeg解码视频文件,结果在c文件中调用
avformat
_open_input函数打开视频文件时报错论坛有说是因为ffmpeg版本问题的,但是我3.x.x和2.的都试过一样的打开失败
小红威武
·
2016-12-23 19:47
Android开发
音视频
FFMPEG Tips (4) 如何中断阻塞的网络线程
系列的第四篇文章,前面的文章有提到如何提取码流信息、如何读每一帧的数据,这些都是离不开网络操作,例如:使用ffmpeg读取一个码流,常规的代码流程示例如下:AVFormatContext *ic =
avformat
_alloc_context
Jhuster
·
2016-12-10 12:51
interrupt
ffmpeg
阻塞
FFMPEG
Tips
ffmpeg RTSP流拉取
extern"C"{#include"libavformat/
avformat
.h"#include"libswscale/swscale.h"#include"libswresample/swresample.h
KirogiYi
·
2016-10-09 19:13
IOS
[3] ffmpeg基础知识以及使用示例
avformat
:封装格式的处理(flv,avi,mov)swscale:视频像素
i丶scream
·
2016-10-01 10:47
「初探」ffmpeg
跨平台ffmpeg播放器开发(三)对FFmpeg解码的函数以及解码的数据结构进行分析(附iOS平台解码代码)
Xcode进行编写.FFmpeg库简介FFmpeg库简介FFmpeg解码流程图FFmpeg函数解码的流程图FFmpeg所有的初始化都要用到"av_register_all()"这个函数来注册所有的组件接下来"
avformat
_open_input
Link913
·
2016-09-29 15:31
ffmpeg将ts解封装为h264和aac文件测试代码
#include#include#define__STDC_CONSTANT_MACROS#ifdef_WIN32extern"C"{#include"libavformat/
avformat
.h"};
shareinfo2018
·
2016-08-28 13:15
ffmpeg
ffmpegj将h264与aac封装成mkv/ts或者h264与mp3封装成mp4/flv/avi测试代码
#include#include#define__STDC_CONSTANT_MACROS#ifdef_WIN32//Windowsextern"C"{#include"libavformat/
avformat
.h
shareinfo2018
·
2016-08-26 16:46
ffmpeg
ffmpeg将yuv封装为mp4测试代码
#include#includeextern"C"{#include"inttypes.h"#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
shareinfo2018
·
2016-08-25 11:14
ffmpeg
ffmpeg一揽子
avformat
_alloc_output_context2()。在基于FFmpeg的视音频编码器程序中,该函数通常是第一个调用的函数(除了组件注册函数av_register_all())。
wainiwann
·
2016-06-22 17:00
ffmpeg
avformat
_open_input返回失败的解决办法
很多朋友在使用新版本的ffmpeg时,都遇到了
avformat
_open_input返回失败的问题。在下也遇到了此问题。在stackoverflow上搜了一下,解决方法如下。
weiyuefei
·
2016-06-15 17:00
【FFmpeg】ffplay播放rtsp视频流花屏问题
在ffplay源码阅读和分析的基础上,画出了其播放rtsp的函数调用关系,如下图所示:
avformat
_open_input函数根据输入的文件名,与rtsp_
u013354805
·
2016-05-31 17:00
ffmpeg
花屏
RTSP
ffplay
使用ffmpeg实现转码样例(代码实现)
使用ffmpeg实现转码样例(代码实现)使用ffmpeg转码主要工作如下:Demux->Decoding->Encoding->Muxing其中接口调用如下: av_register_all();
avformat
_open_input
mokliu
·
2016-05-28 07:00
无法定位序数 xxxx 与动态链接库
avformat
-56.dll上
用vs2010在做一个基于ffmpeg的解码模块,debug下调试没有发现问题, 但是在release下运行时提示如下错误,无法定位序数1126与动态链接库
avformat
-56.dll上期间也换过不同的
machh
·
2016-05-18 13:00
FFmpeg学习笔记003_FFmpeg组件结构分析
avformat
:封装格式处理。avutil:工具库(大部分库都需要这个库的支持)。postproc:后加工。swresample:音频采样数据格式转换。swscale:视频像素数据格式转换。
DaveBobo
·
2016-04-11 18:00
ffmpeg 音频使用流程
input_frame->extended_data),把音频数据进行格式转换并且保存到fifo中从音频fifo中读音频数据(output_frame->data),进行编码,写入文件1、从输入文件解码出一帧
avformat
_open_input
chaooooooo
·
2016-03-26 19:36
ffmpeg study 1
#define __STDC_CONSTANT_MACROS extern "C" { #include "libavcodec/avcodec.h" #include "libavformat/
avformat
.h
SamZel
·
2016-03-12 17:00
视频
ffmpeg
解码
sdl
ffmpeg 关键帧截图
include #include"iostream" #include extern"C" { #include"libavcodec/avcodec.h" #include"libavformat/
avformat
.h
大地之歌
·
2016-01-21 19:00
【ffmpeg】常用结构体集合
几种重要结构体之间的关系,图片来自雷神(雷霄骅)博客结构体AVFormatContext该结构体在
avformat
.h中,AVFormatContext主要存储视音频封装
u012819339
·
2015-12-16 13:00
ffmpeg
音视频
ffmpeg库音频解码示例
gt; #include <stdlib.h> extern "C"{// #include "avcodec.h" #include "
avformat
.h
·
2015-11-13 10:26
ffmpeg
ffmpeg常用数据结构3
这个结构体描述了一个媒体文件或媒体流的构成和基本信息,定义如下: typedefstructAVFormatContext { constAVClass *av_class; /**< Set by
avformat
_alloc_context
·
2015-11-13 09:38
ffmpeg
A script for splitting videos using ffmpeg v2
author:
[email protected]
#if _MSC_VER #define inline __inline #endif #include <libavformat/
avformat
.h
·
2015-11-13 08:25
script
ffmpeg 从内存中读取数据
ffmpeg一般情况下支持打开一个本地文件,例如“C:\test.avi” 或者是一个流媒体协议的URL,例如“rtmp://222.31.64.208/vod/test.flv” 其打开文件的函数是
avformat
_open_input
·
2015-11-13 03:51
ffmpeg
从ffmpeg filter里出来的数据直接送给avcodec_encode_audio2编码,写文件有错。
http://hi.baidu.com/mingyuejingque/item/78e71aff57ae9ec5a835a2e4 感谢mingyuejingque st =
avformat
_new_stream
·
2015-11-13 03:49
filter
ffmpeg save rtsp stream
cplusplus extern "C" { #endif #include <libavcodec/avcodec.h> #include <libavformat/
avformat
.h
·
2015-11-12 23:41
ffmpeg
SDL播放声音
extern "C" { #include <libavcodec/avcodec.h> #include <libavformat/
avformat
.h>
·
2015-11-12 21:43
sd
SDL播放视频
// extern "C" { #include <libavcodec/avcodec.h> #include <libavformat/
avformat
.h
·
2015-11-12 21:43
视频
ffmpeg解码视频流
//初始化、注册编解码器 avcodec_init(); av_register_all();
avformat
_network_init(); //选取测试文件 char* FileName
·
2015-11-12 21:40
ffmpeg
ffmpeg解码音频流
//初始化、注册编解码器 avcodec_init(); av_register_all();
avformat
_network_init(); //选取测试文件 char* FileName
·
2015-11-12 21:40
ffmpeg
视频解码图片
include <libavdevice/avdevice.h> #include <libavcodec/avcodec.h> #include <libavformat/
avformat
.h
·
2015-11-12 19:06
图片
ffmpeg重要结构体之AVFormatContext
AVCodecffmpeg重要结构体之AVIOContextffmpeg重要结构体之AVStreamffmpeg重要结构体之AVPacket结构体AVFormatContext位于文件libavformat/
avformat
.h
qq_32430349
·
2015-11-12 15:00
视频
ffmpeg
解码
ffmpeg中对AVInputFormat结构体中函数的调用
/blog.csdn.net/junllee/article/details/7722605 opt_input_file()->
avformat
_open_input
·
2015-10-31 11:31
format
获得H.264视频分辨率的方法
经过debug发现是av_find_stream_info(已抛弃,现在使用的是
avformat
_find_stream_info)这个方法十分耗时,而且是阻塞的。
·
2015-10-31 08:36
分辨率
上一页
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
其他