Created
December 13, 2019 13:17
-
-
Save cy6erlion/0bfa6c895a0e07188a94b0b0c7257059 to your computer and use it in GitHub Desktop.
avi to mp4 converter
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/bash | |
for i in *.avi; | |
do ffmpeg -i "$i" -c:v libx264 -preset ultrafast "$(basename "$i" .avi)".mp4; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment