Using libav* (FFmpeg)


First some disambiguiation.  there is a project called "libav" which is basically a fork of FFmpeg.  There is also a library system that underlies FFmpeg itself, also called libav.  This page is about the library libav, which is a part of FFmpeg.


FFmpeg itself is composed of several libraries that can be used individually, and outside of FFmpeg, for instance in integrating parts of FFmpeg into your own program.  These are:
* libavutil contains various routines used to simplify programming, including random number generators, data structures, mathematics routines, core multimedia utilities, and much more. 
* libavcodec provides a decoding and encoding API, and all the supported codecs.
* libavformat provides a demuxing and muxing API, and all the supported muxers and de-muxers.
* libavdevice provides an interface for grabbing from input devices (e.g. webcames or line-in audio) and rendering to output devices, and all the supported input and output devices
* libswscale provides a scaling and (raw pixel) format conversions API, with high speed/assembly optimized versions of several scaling routines.
* libavfilter provides an audio and video filtering API, and all the supported filters.
* libpostproc provides video postprocessing routines
* libswresample provides an audio resampling, rematrixing and sample format conversion API, and many high-quality optimized routines.


These can be useful for instance if you don't have access to a command line to run ffmpeg.exe (for example, Android apps), or if you want to use just a small "part" of FFmpeg inside your own program, or if you want access to raw video frames in your program, etc.  Also note that if you just need access to raw video frames, you could also write an audio or video [FilteringGuide filter] and compile it along with FFmpeg and distribute that.  Another way to access raw video frames is to have ffmpeg output to "stdout", like {{{ffmpeg -i ... -}}}. Also note that if you just need to convert/transcode videos within your own application, you could make a system call out to the FFmpeg executable to do the heavy lifting for you.  You can parse the output for stdout for status information, or use the "-progress" option to make the output even more parseable.  


= Getting started =


Here is the [https://www.ffmpeg.org/documentation.html official documentation] for using these libraries (the "Libraries Documentation" section).


Also check [https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples doc/examples], the doxygen documentation is fairly complete and should work as reference (example: the [http://ffmpeg.org/doxygen/trunk/files.html example codes as doxygen]).


In general, you must have the appropriate library compiled/available on your machine (for instance, if using packages, something like libswscale-dev must be installed, or configure, build, and install FFmpeg yourself using the --enable-shared configure option), then you include the appropriate header file in your C code, then link against that library's linker file, like "gcc input.c -lswscale" or the like during the linker phase.


= Tutorials =


The web has a few tutorials, some of which are out of date.  The doc/examples files usually use the latest ABI, however, should be more trustworthy.


[http://dranger.com/ffmpeg/ An FFmpeg and SDL Tutorial by Stephen Dranger], explains how to write a video player based on FFmpeg (see also [https://github.com/phamquy/FFmpeg-tutorial-samples here]).


= Hints =


== libavformat ==


Check its [http://ffmpeg.org/doxygen/trunk/group__libavf.html Doxygen documentation].  See most of the tutorials, as well.


== libavcodec ==


Check its [http://ffmpeg.org/doxygen/trunk/group__libavc.html Doxygen documentation].  See most of the tutorials, as well.


Determining the right values to pass to AVCodecContext:


One user [https://lists.ffmpeg.org/pipermail/ffmpeg-user/2012-June/007410.html shared] this advice for determining all the correct values:


 [An] approach to figuring this out is:


 1. come up with the ffmpeg app command line which does what you want


 2. use the gdb debugger to execute the ffmpeg_g app, put a breakpoint on avcodec_encode_audio2() (or whichever method you need), and see what values the ffmpeg app uses for AVPacket and for the (audio or otherwise) related fields in AVCodecContext.


== libswresample ==


[https://github.com/FFmpeg/FFmpeg/blob/master/doc/swresample.txt This file] is also given as documentation.


== libswscale ==


[https://github.com/FFmpeg/FFmpeg/blob/master/doc/swscale.txt This file] is also given as documentation.


== libavdevice ==


Check its [http://ffmpeg.org/doxygen/trunk/group__lavd.html doxygen documentation].


here is an example: http://ffmpeg.zeranoe.com/forum/viewtopic.php?f=15&t=274


== libavfilter ==


See http://wiki.multimedia.cx/index.php?title=Libavfilter and also the examples, and already existing filters. we have more doxy, some examples and a libavfilter-design document in doc.  Also see the ffmpeg documentation for the various filters.




= Contact =


If you have problems, one place to get help is to ask the [https://lists.ffmpeg.org/mailman/listinfo/libav-user/ libav-user] mailing list, its description: "This list is about using libavcodec, libavformat, libavutil, libavdevice and libavfilter."  IRC might work also.


== see also ==


http://wiki.multimedia.cx/index.php?title=Category:FFmpeg_Tutorials










  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值