iemejia / docker-ffmpeg

A docker image to provide the latest available ffmpeg from master

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

A docker image to provide the latest available ffmpeg amd64 build from master. This image uses the static binary provided here.

Instructions

Build the image:

docker build -t iemejia/docker-ffmpeg .

Run the image

docker run --rm -it -e "TERM=xterm-256color" iemejia/docker-ffmpeg

Example

Convert a file from mp3 to opus in a local directory:

docker run \
  -v $HOME/files:/files \
  --rm -it -e "TERM=xterm-256color" \
  iemejia/docker-ffmpeg -i /files/song.mp3 -c:a libopus -b:a 96K /files/song.opus

About

A docker image to provide the latest available ffmpeg from master

License:GNU General Public License v2.0


Languages

Language:Dockerfile 100.0%