Created
October 18, 2024 04:30
-
-
Save denisdemaisbr/e51bf17e6db5843659b043e26c175be1 to your computer and use it in GitHub Desktop.
ffmpeg: create a copy of original file without sound
This file contains 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
#!/bin/sh | |
ffmpeg -i {{input.mp4}} -c copy -an {{output.mp4}} | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment