Created
November 21, 2020 23:26
-
-
Save abarrak/aa40ced607333012e2e778d0384d93c3 to your computer and use it in GitHub Desktop.
Convert Outdated or Broken AVI files of VIDX streams to MPEG4 streams
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
for i in *.avi; do | |
ffmpeg -i "$i" -c:v mpeg4 -q:v 3 "ed_$i" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment