Files
salfter b96024d353
build and push ffmpeg-docker / build (push) Successful in 22s
Update README.md
2026-03-24 08:06:04 -07:00

695 B

ffmpeg-docker

This is a static-build ffmpeg, built with this script, in a scratch container for easy use anywhere, with "non-free" codecs enabled.

Invoke it with something like this:

docker run --rm -v /path/to/files:/path/to/files \
  git.alfter.us/salfter/ffmpeg-docker \
  /path/to/files/infile.mkv -c copy -f mp4 /path/to/files/outfile.m4v

Note that the third line is just arguments passed to ffmpeg.

ffprobe is also available:

docker run --rm -v /path/to/files:/path/to/files \
  --entrypoint /usr/bin/ffprobe git.alfter.us/salfter/ffmpeg-docker \
  /path/to/files/infile.mkv