# ffmpeg **Repository Path**: jslyzt/ffmpeg ## Basic Information - **Project Name**: ffmpeg - **Description**: ffmpeg vs2013 + mingw + linux lib exe - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ffmpeg #### 介绍 ffmpeg vs2013 + mingw + linux lib exe #### 说明 代码 下载地址 git clone https://git.ffmpeg.org/ffmpeg.git 版本 1cfba7fc7584e006cf0c6a7d61421c719dc4aefd 补丁文件 ffmpeg.diff 代码文件 ffmpeg.tar.gz 实例工程 ffdemo 编译指令 vs debug ./configure --toolchain=msvc --enable-static --arch=x86_64 --prefix=./vsd_static vs release ./configure --toolchain=msvc --enable-static --arch=x86_64 --prefix=./vsr_static mingw ./configure --enable-static --arch=x86_64 --prefix=./gcc_static linux ./configure --enable-static --arch=x86_64 --enable-gpl --enable-libx264 --enable-libx265 --enable-librtmp --prefix=./linux_static windows编译使用msys2,参考https://blog.csdn.net/mr_xuliang/article/details/88552613 注意在msys环境能够使用cl,debug不需要修改,release把configure关于vs编译器的 -Od -MDd参数改成-O2 -MD