Changes between Version 3 and Version 4 of Using libav*
- Timestamp:
- Sep 2, 2012, 7:45:19 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Using libav*
v3 v4 15 15 Check [https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples doc/examples], also doxygen documentation is fairly complete and should work as reference (example: the [http://ffmpeg.org/doxygen/trunk/group__libavf.html libavformat doxygen]). 16 16 17 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. 18 17 19 = Tutorials = 18 20 … … 25 27 = Hints = 26 28 27 * libswresample 29 == libswresample == 28 30 29 31 [https://github.com/FFmpeg/FFmpeg/blob/master/doc/swresample.txt This file] is also given as documentation. 30 32 31 * libswscale 33 == libswscale == 32 34 33 35 [https://github.com/FFmpeg/FFmpeg/blob/master/doc/swscale.txt This file] is also given as documentation. 36 37 = Contact = 38 39 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, which is basically focused around people using the libav* libraries.