当前位置: 代码迷 >> 驱动开发 >> FFmpeg-full-SDK-3.2 怎么使用?
  详细解决方案

FFmpeg-full-SDK-3.2 怎么使用?

热度:34   发布时间:2016-04-28 10:42:09.0
FFmpeg-full-SDK-3.2 如何使用??
我在CSDN下载了一个FFmpeg-full-SDK-3.2,里面有好多的东西,但是我不知道如何使用啊,虽然读了Readme,但是好像帮助不大啊,我在电脑上双击exe文件,结果是跳出个cmd然后闪了一下,就关了,然后就没有说明现象了。这个东西是在PC上用的吧?要不怎么双击它没有跳出错误窗口呢??如果是放在linux下面用的话,又如何使用呢?求解啊?讲的具体点啊····本人实在实在是菜的不能再菜了啊·····求大哥大姐帮帮小弟啊!!!
下面是打开后的图片,包括readme的内容:
                                  ffmpeg FULL SDK V3.2
                                       (2008-04-12)



--------------------------------------------

    继ffmpeg工程组(http://www.ffmpeg.com.cn)2006年5月5日发布ffmpeg+x264 SDK V1.0版本,2006年9月25日发布V2.0版本之后,2007年8月21日发布V3.0版本,有很长的时间没有发布过新的SDK版本,ffmpeg的SVN版本号也由V3.0版本时的r10087更新到了目前的r12790,这期间ffmpeg的功能与稳定性都完善了很多,部分编码器的性能也有了较大幅度的提升,在很多热心的朋友强烈要求下,ffmpeg工程组再次发布FFMPEG FULL SDK V3.2,此次发布的SDK依旧为Full SDK,我们尽可能的集成更多的编解码器,需要注意的是,新版本的SDK中的ffmpeg.exe程序所支持的指令与V3.0所支持的指令有了较大的不同,具体可使用指令“ffmpeg.exe --help”获得更多的帮助。

    该SDK的编译配置如下:
./configure --prefix=d:/OmniCoder/svn_build --enable-memalign-hack --enable-shared --disable-static --disable-encod
er=snow --disable-decoder=ac3 --disable-decoder=vorbis --disable-encoder=vorbis --disable-vhook --enable-ffplay --disabl
e-ffserver --disable-mpegaudio-hp --enable-pthreads --enable-liba52 --enable-nonfree --enable-libamr-nb --enable-libamr-
wb --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libgsm --enable-libtheora --enable-libvorbis --enable-
libx264 --enable-libxvid --enable-avisynth --enable-gpl --enable-swscale --enable-avfilter --enable-avfilter-lavf --enab
le-demuxer=vfwcap --enable-demuxer=rm --extra-cflags=-I/usr/local/include -I/usr/local/include/SDL --extra-ldflags=-L/us
r/local/lib --extra-libs=-lpthreadGC2

  libavutil version: 49.6.0
  libavcodec version: 51.54.0
  libavformat version: 52.13.0
  libavdevice version: 52.0.0
  libavfilter version: 0.0.0
  built on Apr 12 2008 22:21:14, gcc: 4.3.0

Note:
output_example.exe, tools/cws2fws.exe, tools/pktdumper.exe, tools/qt-faststart.exe, tools/trasher.exe are also compiled

H264 decoding/encoding should be ehanced huge in this version if you have multi-core CPUs
x264 encoding will use multi-cores automically in this version

eg:
ffmpeg -i input.avi -threads 2 -vcodec libx264 -b 500K -bufsize 500K  -minrate 500K -maxrate 500K -rc_eq "blurCplx^(1-qComp)" -qmin 2 -qmax 51 output.mp4

Addins:
1) how to make a mp4 streamable with Adobe Flash Player?
You can use the following command to make a mp4/mov/3gp file<encoded with H264+AAC> streaming feature which is compatible with the latest Adobe Flash Player
eg:
 qt-faststart.exe input.mp4 output.mp4
 
Now,output.mp4 can be rendered instantly by Flash Player
  相关解决方案