Last active
August 18, 2022 06:48
-
-
Save percybolmer/61da2d82c9f323c647e4ff56fcff95f6 to your computer and use it in GitHub Desktop.
docker ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t demo/ffmpeg . | |
# Run the container on the demo video and output into mounted share | |
docker run -v $PWD/data:/shared demo/ffmpeg -i /videos/big_buck_bunny_720p_1mb.mp4 -filter:v "setpts=PTS/60" /shared/output.mkv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment