下载ffmpeg代码合x264代码,ffmpeg代码:http://ffmpeg.org/x264代码:http://www.videolan.org/developers/x264.htmlcdx264./configure--enable-staticmakemakeinstallcdffmpeg./configure--prefix=/usr/local/ffmpeg--enable-libx264--enable-gpl--disable-yasm--enable-shar..
分类:
其他好文 时间:
2014-08-13 19:26:17
阅读次数:
181
默认交叉编译器已经搭建好。。。。。。。。。。。。。。。
需求:
把标准的h264流保存成avi格式的实现文件,所以需要h264的解码器,avi文件容器,传输协议类型是文件,这些会体现在ffmpeg的configure配置上--disable-everything --enable-protocol=file --enable-encoder=libx264 --enable-encoder=l...
分类:
其他好文 时间:
2014-07-08 15:16:30
阅读次数:
865
使用最新版ffmpeg-0.11
libx264-125,使用默认编码时,用Eyecard发现profile-idc一直是PROFILE_H264_HIGH
(profile-idc=100),但是项目要求是baseline,设置了AVCodecContext的->profile=FF_PROFIL...
分类:
其他好文 时间:
2014-05-26 10:09:17
阅读次数:
222
1、在用mingw
4.5.2编译x264后,生成libx264.a文件,将libx264.a和x264.h和x264_config.h拷贝到Qt工程中,将mingw/lib/libpthread.a拷贝到Qt工程中,在.pro中LIB
+= -L. -lx264 -lpthread2、编译时会提....