Created
October 30, 2017 15:48
-
-
Save GoofProg/6913f200b36acee00da57c27a19d795c to your computer and use it in GitHub Desktop.
transcode all mkv media to SD 128K 44.1k using ffmpeg (Linux)
This file contains hidden or 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
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