# ffmpeg-4.0.6 **Repository Path**: linux2014/ffmpeg-4.0.6 ## Basic Information - **Project Name**: ffmpeg-4.0.6 - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-10 - **Last Updated**: 2024-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --- ### https://ffmpeg.org/download.html FFmpeg在 Windows 环境编译(64位)支持h264,h265,和Intel QSV,Nvidia Cuda,AMD amf 硬件加速 https://blog.csdn.net/XIE971793909/article/details/131549917?spm=1001.2101.3001.6650.11&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-11-131549917-blog-129128533.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-11-131549917-blog-129128533.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&utm_relevant_index=18 https://blog.csdn.net/weixin_45947430/article/details/122509083?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0-122509083-blog-131549917.235^v40^pc_relevant_3m_sort_dl_base2&spm=1001.2101.3001.4242.1&utm_relevant_index=3 https://blog.csdn.net/qq_38056514/article/details/129827722?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-4-129827722-blog-122509083.235^v40^pc_relevant_3m_sort_dl_base2&spm=1001.2101.3001.4242.3&utm_relevant_index=7 https://sheepsun.blog.csdn.net/article/details/131003056?spm=1001.2101.3001.6650.8&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-8-131003056-blog-129827722.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-8-131003056-blog-129827722.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&utm_relevant_index=17&ydreferer=aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM4MDU2NTE0L2FydGljbGUvZGV0YWlscy8xMjk4Mjc3MjI%2FdXRtX21lZGl1bT1kaXN0cmlidXRlLnBjX3JlbGV2YW50Lm5vbmUtdGFzay1ibG9nLTJ%2BZGVmYXVsdH5iYWlkdWpzX2JhaWR1bGFuZGluZ3dvcmR%2BZGVmYXVsdC00LTEyOTgyNzcyMi1ibG9nLTEyMjUwOTA4My4yMzVedjQwXnBjX3JlbGV2YW50XzNtX3NvcnRfZGxfYmFzZTImc3BtPTEwMDEuMjEwMS4zMDAxLjQyNDIuMyZ1dG1fcmVsZXZhbnRfaW5kZXg9Nw%3D%3D https://blog.csdn.net/sinat_27956747/article/details/131497466?spm=1001.2101.3001.6650.15&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-15-131497466-blog-131003056.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-15-131497466-blog-131003056.235%5Ev40%5Epc_relevant_3m_sort_dl_base2&utm_relevant_index=21 https://www.bmabk.com/index.php/post/137651.html https://blog.csdn.net/lishi_1991/article/details/128668938?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0-128668938-blog-131406282.235^v40^pc_relevant_3m_sort_dl_base2&spm=1001.2101.3001.4242.1&utm_relevant_index=3 https://blog.csdn.net/u011686167/article/details/120390739 https://blog.csdn.net/FlayHigherGT/article/details/131406282?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-5-131406282-blog-131549917.235^v40^pc_relevant_3m_sort_dl_base2&spm=1001.2101.3001.4242.4&utm_relevant_index=8 ### ffmpeg源码剖析: https://blog.csdn.net/u011686167/article/details/126647876 https://blog.csdn.net/u011686167/article/details/123242718 --- nasm: https://nasm.us/ yasm: https://github.com/yasm/yasm http://yasm.tortall.net/releases/Release1.3.0.html ### 在mingw64下编译 ``` ./configure --prefix=/d/D/install_dir/ffmpeg_406 --cc=gcc --host-os=mingw --disable-x86asm && make -j4 && make install && make clean ``` ``` D:\D\install_dir\msys2\mingw64\bin\ar.exe: libavform: No such file or directory make: *** [ffbuild/library.mak:22: libavformat/libavformat.a] Error 1 make: *** Waiting for unfinished jobs.... ``` --- --- FFmpeg README ============= FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata. ## Libraries * `libavcodec` provides implementation of a wider range of codecs. * `libavformat` implements streaming protocols, container formats and basic I/O access. * `libavutil` includes hashers, decompressors and miscellaneous utility functions. * `libavfilter` provides a mean to alter decoded Audio and Video through chain of filters. * `libavdevice` provides an abstraction to access capture and playback devices. * `libswresample` implements audio mixing and resampling routines. * `libswscale` implements color conversion and scaling routines. ## Tools * [ffmpeg](https://ffmpeg.org/ffmpeg.html) is a command line toolbox to manipulate, convert and stream multimedia content. * [ffplay](https://ffmpeg.org/ffplay.html) is a minimalistic multimedia player. * [ffprobe](https://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect multimedia content. * Additional small tools such as `aviocat`, `ismindex` and `qt-faststart`. ## Documentation The offline documentation is available in the **doc/** directory. The online documentation is available in the main [website](https://ffmpeg.org) and in the [wiki](https://trac.ffmpeg.org). ### Examples Coding examples are available in the **doc/examples** directory. ## License FFmpeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information. ## Contributing Patches should be submitted to the ffmpeg-devel mailing list using `git format-patch` or `git send-email`. Github pull requests should be avoided because they are not part of our review process and will be ignored.