Skip to content

Instantly share code, notes, and snippets.

@jonasnordlund
Created May 14, 2022 13:28
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 jonasnordlund/f3cf4f5c5019238f79639c7b884457dd to your computer and use it in GitHub Desktop.
Save jonasnordlund/f3cf4f5c5019238f79639c7b884457dd to your computer and use it in GitHub Desktop.
Transcode any audio track to AC3
rem Transcodes any audio track to AC3 while retaining video as-is.
rem Dedicated to the poor bastards with decoders not supporting the
rem ever more popular Dolby Digital Plus codec.
ffmpeg -i "INPUT" -map 0 -c:v copy -c:a ac3 -c:s copy "OUTPUT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment