Skip to content

Instantly share code, notes, and snippets.

@Lerie82
Last active January 18, 2022 18:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lerie82/4dbcf750d4afb5c288119ef26b685cec to your computer and use it in GitHub Desktop.
Save Lerie82/4dbcf750d4afb5c288119ef26b685cec to your computer and use it in GitHub Desktop.
ffmpeg convert files in directory to mp4
### bash
for i in *.mkv;
do name=`echo $i | cut -d'.' -f1`;
echo $name;
ffmpeg -i "$i" "${name}.mp4";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment