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
QT 使用ffmpeg 学习6 ffmpeg API保存流到文件demo
一些函数说明:
avformat
_open_input该函数用于打开多媒体数据并且获得一些相关的信息。
谢厂节_编程圈
·
2020-06-30 04:44
音视频处理
使用FFmpeg把视频转换成JPG格式的图片
STDC_CONSTANT_MACROS#ifdef_WIN32//Windowsextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
xiaoliumo
·
2020-06-30 00:11
FFMPEG4.1 - 音频编码
s16le音频格式的pcm文件编码后,pcm转换为mp3格式文件#includeextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
刀剑の神君
·
2020-06-29 22:21
CC++
如何判断视频数据是H264编码
H264详细介绍:H264编码总结u8is_h264_file(char*filename){AVFormatContext*ifmt_ctx=NULL;intret=0;if((ret=
avformat
_open_input
蓁叶
·
2020-06-29 07:25
多媒体技术
ffmpeg进行转封装
2018-12-19ffmpeg进行转封装不进行转码//ffmpeg库4.0.2#include#includeextern"C"{#include#include}#pragmacomment(lib,"
avformat
.lib
拳打坟庄敬老院,脚踢长沟幼儿园
·
2020-06-29 04:51
ffmpeg
windows下利用ffmpeg 采集摄像头数据,出现获取不了摄像头视频数据的像素格式(返回AV_PIXFORMAT_NONE)
1.ffmpeg的初始化不说了,不懂的可以搜索一下2.利用vfwcap采集AVFormatContext*pFormatCtx=
avformat
_alloc_context();AVInputFormat
唯独失去了从容
·
2020-06-28 20:48
FFMPEG
利用ffmpeg读取音乐文件的专辑信息(包括专辑封面图片)
AVFormatContext*fmt_ctx=NULL;AVDictionaryEntry*tag=NULL;av_register_all();if((ret=
avformat
_open_input
weixin_34295316
·
2020-06-28 16:40
ffmpeg打开视频解码器失败:Could not find codec parameters for stream 0 (Video: h264): unspecified size...
进行拉流分离音视频数据再解码播放操作的时候;有时候经常会报错:Couldnotfindcodecparametersforstream0(Video:h264):unspecifiedsizeffmpeg默认使用udp方式传输,在使用:
avformat
_find_stream_info
weixin_34187822
·
2020-06-28 13:35
ffmpeg打开视频解码器失败:Could not find codec parameters for stream 0 (Video: h264): unspecified size...
进行拉流分离音视频数据再解码播放操作的时候;有时候经常会报错:Couldnotfindcodecparametersforstream0(Video:h264):unspecifiedsizeffmpeg默认使用udp方式传输,在使用:
avformat
_find_stream_info
weixin_30278311
·
2020-06-27 15:55
qt 使用opengl显示yuv实时视频流
av_register_all();
avformat
_network_init();AVFormatContext*pAVFo
wangzai6378
·
2020-06-27 12:39
Qt
opengl
yuv
基于live555多路rtsp视频解码
#pragmaonceextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h"#include"libswscale
wangzai6378
·
2020-06-27 12:07
视频解码
FFmpeg获取视频时长方法
下载地址:https://ffmpeg.zeranoe.com/builds/#includeextern"C"{#include}voidmain(){AVFormatContext*ifmt=NULL;
avformat
_network_i
unfound
·
2020-06-27 10:34
音视频
ffmepg 实时流,获取图片
includeusingnamespacestd;extern"C"{#include"SDL2/SDL.h"#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
dongfangxingyu1
·
2020-06-27 04:24
ffmpeg
FFmpeg 音视频处理核心技术初体验
ffmpeg常用structAVFormatContextAVStreamAVCodecContextAVCodecAVPacketAVFrameffmpeg常用Apiav_register_all()
avformat
_alloc_output_context2
markfork
·
2020-06-27 04:18
qt 实现RTSP&RTMP拉流,实时显示视频流
没有接触之前,感觉很高深的样子,其实并不然,ffmpeg内部基本都帮你实现了,类似打开摄像头一样的流程,使用
avformat
_o
决战小树林
·
2020-06-27 04:09
qt第三方库使用
FFmpeg:开流和读流超时设计
ffmpeg的
avformat
_open_input()和av_read_frame默认是阻塞的*用户可以通过设置“ic->flags|=AVFMT_FLAG_NONBLOCK;”设置成非阻塞(通常是不推荐的
片片碎
·
2020-06-27 02:17
基于FFmpeg音视频流同步
难点在于将转码后的数据输出到内存中,再从内存读取数据并封装AVFormatContext *ic = NULL; ic =
avformat
_alloc_context(); unsigned char
cnhui2016
·
2020-06-26 23:05
音视频与图像处理
avio_open成功
avformat
_write_header失败
1)ffmpeg写avi时候,avio_open成功,但是写avi头时调用
avformat
_write_header失败在解码器初始化时,先avio_open创建文件后,然后马上调用
avformat
_write_header
smilestone322
·
2020-06-26 13:53
FFMPEG
流媒体开源技术
include“libavformat/
avformat
.h” file not found
转:最近由于项目需要,接触了一下ffmpeg的编译和使用。由于之前的版本ffmpeg编译的库比较老,对新设备,5s及5s以后的设备支持不太好,重新编译了ffmpeg静态库。一,下载并在终端中运行脚本编译ffmpeg脚本参考git上的:https://github.com/kewlbear/FFmpeg-iOS-build-script;终端进入刚刚下载后的脚本文件夹下,运行sh:build-ffm
smilebigdear
·
2020-06-26 13:20
iOS
iOS
FFMPeg代码分析:AVCodecContext结构体
在调用
avformat
_open_input打开文件后,下一步调用av_find_stream_info函数从文件中读取音视频流的信息,而后AVFormatContext的结构体将会将这些信息保存在其中
取次花丛懒回顾
·
2020-06-26 08:36
FFMpeg
NDK探索之FFmpeg
FFmpeg库简介avcodec:编解码(非常重要);
avformat
:封装格式的处理;avfilter:滤镜特效处理;avdevice:各种设备的输出;avutil:工具类(大部分库都要这个库的支持)
简祖明
·
2020-06-25 16:15
ffmpeg综合应用示例(一)——摄像头直播
要使用libavdevice的相关函数,首先需要注册相关组件avdevice_register_all();接下来我们要列出电脑中可用的dshow设备AVFormatContext*pFmtCtx=
avformat
_all
zhanghui_cuc
·
2020-06-24 17:42
ffmpeg
Qt版的Rtsp客户端
主要是要在编译ffmpeg的时候,开启rtsp,network,这样我们就可以直接利用
avformat
_open_input函数接受rtsp协议了。ffmpeg代码的编写的流程和输入文件是一样的。
_空城寂
·
2020-06-24 17:46
流媒体
error C2054: 在“inline”之后应输入“(”
include}*/intmain(intargc,char**argv){AVFormatContext*fmt_ctx=NULL;intret;av_register_all();if((ret=
avformat
_open_input
n3verl4nd
·
2020-06-24 16:46
使用ffmpeg推送视频流至流媒体服务器(c语言)
源码链接:http://ffmpeg.org/doxygen/2.8/index.html*ffmpeg使用版本3.3.2*/#include#include#include"libavformat/
avformat
.h
marco_0631
·
2020-06-24 13:05
ffmpeg
av_image_fill_arrays
视频编码流程图.jpg1.av_register_all():注册组件,包括FFmpeg所有编解码器2.
avformat
_alloc_context():初始化封装格式上下文3.avio_open():
m0_37346206
·
2020-06-24 11:41
用AVCodecParameters代替AVCodecContext
main.cpp:151:warning:‘AVStream::codec’isdeprecated(declaredat……\Other_libs\ffmpeg3.2\include/libavformat/
avformat
.h
luotuo44
·
2020-06-24 09:10
图像视频编码和FFmpeg
ffmpeg解析mp4
*/extern"C"{#include"libavformat/
avformat
.h"}/***@brief将一个AVRational类型的分数转换为double类型的浮点数*@paramr:r为一个
lq496387202
·
2020-06-24 09:14
ffmpeg 自定义数据来源, 可以是文件,可以是内存,可以是网络, 爱咋的咋的
//#include"stdafx.h"extern"C"{#include};#pragmacomment(lib,"
avformat
.lib")intReadFunc(void
liuxuejin
·
2020-06-24 07:07
QT 中调用FFMpeg实现视频播放功能
videoplayer.cpp#include"videoplayer.h"#includeextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
liaogaobo2008
·
2020-06-24 04:30
c++
Socket
FFMPEG读取内存中的h264数据进行推流
#include#include#ifdef__cplusplusextern"C"{#endif#include"libavformat/
avformat
.h"#include"libavutil/mathematics.h
khl0616
·
2020-06-24 03:06
ffmpeg
FFmpeg API 变更记录
但是最近的版本中,av_find_stream_info()函数已经无法使用了,取而代之的是
avformat
_fin
雷霄骅
·
2020-06-24 03:48
FFMPEG
FFmpeg
ffmpeg rtsp转 rtmp
https://www.jianshu.com/p/69eede147229#includeusingnamespacestd;//引入头文件extern"C"{#include"libavformat/
avformat
.h
ShellCollector
·
2020-06-23 20:42
视频编解码
ffmpeg 源代码简单分析 : av_register_all()
此前写了好几篇ffmpeg源代码分析文章,列表如下:图解FFMPEG打开媒体的函数
avformat
_open_inputffmpeg源代码简单分析:av_register_all()ffmpeg源代码简单分析
dianyimo9099
·
2020-06-23 04:56
ffmpeg
avformat
_open_input返回失败的解决办法
用ffmpeg做的第一个程序,参考网上的代码,就出现了一些问题,其中
avformat
_open_input返回失败。
dianchixian5277
·
2020-06-23 04:24
ffmpeg将mp4解封装为yuv以及pcm测试代码
#includeextern"C"{#include"libavutil/imgutils.h"#include"libavutil/samplefmt.h"#include"libavformat/
avformat
.h
shareinfo2018
·
2020-06-22 22:02
ffmpeg
ffmpeg视频编解码实例
STDC_CONSTANT_MACROS#ifdef_WIN32//Windowsextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
byxdaz
·
2020-06-22 19:28
音视频
FFmpeg应用知识介绍
简介1、FFmpeg既是一款音视频编解码工具,同时也是一组音视频编解码开发套件2、FFmpeg框架基本组成
AVFormat
封装和解封装模块库如MP4、FLV、KV、TS等文件封装格式,RTMP、RTSP
bingshanzhu
·
2020-06-22 18:40
FFMPEG
ffmpeg的demux流程简析
【
avformat
_open_input流程】这里我只说根据字节流来分析的过程,而不管扩展名啊什么的。
a1875566250
·
2020-06-22 10:02
ffmpeg水印叠加代码分析
ifdef_WIN32#definesnprintf_snprintf//Windowsextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
耳语吖
·
2020-06-21 20:24
ffmpeg
hisi3559A平台VENC获取H264裸流封装成mp4
主要函数说明:av_register_all();
avformat
_alloc_output_context2():初始化输出文件。avio_open():打开输出文件。
fire_drangon
·
2020-06-21 15:00
海思平台(hisi)
关于推流实现的直播代码,php直播平台源码
#include#include"ffmpeg/include/libavformat/
avformat
.h"#include"ffmpeg/include/libavcodec/avcodec.h"voidpublishstream
云豹科技官方
·
2020-06-21 15:30
直播平台开发
直播系统开发
直播APP源码
如何判断MP4中视频数据是H265还是H264编码
u8is_h264_file(char*filename){AVFormatContext*ifmt_ctx=NULL;intret=0;if((ret=
avformat
_open_input(&ifmt_ctx
rannar
·
2020-06-21 06:03
ffmpeg time_base详解
一、time_base1、AVStream(libavformat/
avformat
.h)typedefstructAVStre
peckjerry
·
2020-06-21 04:32
ffmpeg
android
ijkplayer
秒开与卡顿优化
avformat
_find_stream最耗时,根据流信息做优化,可以将要求下载的bufsize设置的小一些;或者直接
b036101467d7
·
2020-06-12 13:57
FFmpeg笔记(四)--编码过程
AVFormatContext*
avformat
_context=
avformat
_alloc_context();constch
rookiesss
·
2020-05-12 15:39
avformat
_alloc_output_context2源码分析
/***为输出格式分配AVFormatContext,使用
avformat
_free_context()释放*@param*ctx输出参数,创建好的AVFormatContext*对象将会由该参数传递出来
Sivin
·
2020-05-09 11:09
打印音视频信息
将ffmpeg定义的编解码库格式库格式协议网络协议全部注册到我们的程序里面av_register_all()打开多媒体文件根据文件后缀名识别多媒体格式输出
avformat
_context将音频流视频流打印出来
紫色冰雨
·
2020-04-29 19:19
十九、OpenSL-ES播放音频原理
OpenSL-ES播放音频具体实现#include#include#includeextern"C"{#include"libavcodec/avcodec.h"#include"libavformat/
avformat
.h
ChiangCMBA
·
2020-04-12 08:20
avformat
_open_input返回失败问题
很多时候我们希望通过回调函数给ffmpeg传递码流,让它帮我们完成解码操作,要实现该功能需要定义AVIOContext和AVFormatContext对象,下面把核心代码贴出来:if(NULL!=m_pull_data_func){m_avio_ctx_input=avio_alloc_context(m_avio_ctx_buffer,m_avio_ctx_buffer_size,0,m_pul
heibao111728
·
2020-04-01 18:53
ffmpeg
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他