Skip to content

Instantly share code, notes, and snippets.

@GoofProg
Created October 30, 2017 15:48
Show Gist options
  • Save GoofProg/6913f200b36acee00da57c27a19d795c to your computer and use it in GitHub Desktop.
Save GoofProg/6913f200b36acee00da57c27a19d795c to your computer and use it in GitHub Desktop.
transcode all mkv media to SD 128K 44.1k using ffmpeg (Linux)
find -name "*.mkv" -exec ffmpeg -i {} -c:v libx264 -c:a mp3 -ar 44100 -ab 128k -vf scale=-2:360 {}-H264-SD.mp4 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment