使用最新的
docker pull jrottenberg/ffmpeg
docker run -it --rm -v /path/to/input:/input -v /path/to/output:/output jrottenberg/ffmpeg <ffmpeg command>
比如我想增亮
在 /home 目录下 有一个 video.mp4
docker run --rm -v /home:/home jrottenberg/ffmpeg:7-scratch -i /home/video.mp4 -vf "eq=brightness=0.3" /home/processed-video3.mp4
原文链接:https://blog.csdn.net/qq_22823581/article/details/144084190