ffmpeg
Public repository for ragedunicorn docker ffmpeg images
2.2K

A lightweight FFmpeg build on Alpine Linux with extensive codec support for versatile media processing.
# Pull latest version
docker pull ragedunicorn/ffmpeg:latest
# Or pull specific version
docker pull ragedunicorn/ffmpeg:7.1.1-alpine3.22.0-1
# Run FFmpeg
docker run -v $(pwd):/tmp/workdir ragedunicorn/ffmpeg:latest -i input.mp4 output.mp4
Video: H.264 (libx264), H.265/HEVC (libx265), VP8/VP9 (libvpx), Theora
Audio: AAC (libfdk-aac), MP3 (libmp3lame), Opus, Vorbis
Other: WebP support, RTMP streaming, SSL/TLS, Subtitles (libass)
docker run -v $(pwd):/tmp/workdir ragedunicorn/ffmpeg:latest \
-i input.mp4 -c:v libx264 -c:a aac output.mp4
docker run -v $(pwd):/tmp/workdir ragedunicorn/ffmpeg:latest \
-i input.mp4 -vn -acodec mp3 output.mp3
docker run -v $(pwd):/tmp/workdir ragedunicorn/ffmpeg:latest \
-i input.mp4 -vf scale=1280:720 output.mp4
docker run -v $(pwd):/tmp/workdir ragedunicorn/ffmpeg:latest \
-i input.mp4 -vf "fps=10,scale=320:-1" output.gif
This image uses semantic versioning that includes all component versions:
Format: {ffmpeg_version}-alpine{alpine_version}-{build_number}
7.1.1-alpine3.22.0-1 - Initial release with FFmpeg 7.1.1 and Alpine 3.22.07.1.1-alpine3.22.0-2 - Rebuild of same versions (bug fixes, security patches)7.1.1-alpine3.22.1-1 - Alpine Linux patch update7.1.2-alpine3.22.0-1 - FFmpeg version updateWhen updates are available through automated dependency management, new releases are created with appropriate version tags.
MIT License - See GitHub repository for details.
Content type
Image
Digest
sha256:615f1d710…
Size
36.7 MB
Last updated
about 1 month ago
docker pull ragedunicorn/ffmpeg