Dockerized FFmpeg
!!! WORK IN PROGRESS !!!
Playing around with FFmpeg and creating a container with preset conversions. Eg: convert large iPhone .mov files to more convenient and smaller .mp4 files.
This image runs as User with UID 1000 within the container. For most Linux Desktop Distros this might be your UserID, so file permissions should be fine.
docker build -t toughiq/ffmpeg .
docker run --rm -it -v${PWD}/work:/work toughiq/ffmpeg -i V*.MOV out.mp4
docker run -it -v ${PWD}:/work toughiq/ffmpeg:latest -i sample.mp4 -q:a 0 -map a sample.mp3
Content type
Image
Digest
Size
20.3 MB
Last updated
over 8 years ago
docker pull toughiq/ffmpeg