Skip to content

Instantly share code, notes, and snippets.

@mike-boddin
Created January 13, 2018 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike-boddin/72d5ba16563d3a28937f47f05a000e60 to your computer and use it in GitHub Desktop.
Save mike-boddin/72d5ba16563d3a28937f47f05a000e60 to your computer and use it in GitHub Desktop.
simple audiostream-converting of mkv-files to ac3 without touching the videostream. Found here: https://gdion.wordpress.com/2016/06/12/simple-dts-to-ac3-using-ffmpeg/
FOR %%f IN (*.mkv) DO C:\ffmpeg\ffmpeg.exe -i "%%f" -map 0 -vcodec copy -scodec copy -acodec ac3 -b:a 640k "%%~nf"-AC3.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment