使用命令创建项目
cargo new ffmpeg-rust
添加ffmpeg-next库
cargo add ffmpeg-next
这个时候cargo run肯定会报一堆错误
使用这个ffmpeg-next官方仓库的 wiki 中的 GNU 构建指南
https://github.com/zmwangx/rust-ffmpeg/wiki/Notes-on-building
这里回车选择默认全部安装
vcpkg integrate install
vcpkg install ffmpeg[core,avcodec,avformat,swscale,avdevice,avfilter] --triplet x64-windows --recurse
这时候在执行cargo run应该就不报错了
这个环境在liunx很好解决,却什么库install就行了,但是在window还是有点麻烦的,算上上课的时间差不多快弄一周了这个环境问题