Last active
April 25, 2022 19:53
-
-
Save marios88/f1c92347cc781f8bc9939e10c5460320 to your computer and use it in GitHub Desktop.
ffmpeg change audio codec to ac3
This file contains 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
./mountRPI.sh | |
// Make audio AC3 | |
ffmpeg -i input.mkv -acodec ac3 -vcodec copy -c:s copy -map 0 -analyzeduration 999999999 -probesize 999999999 ~/RPI/EXTERNAL/Tainies/output.mkv | |
// Make audio AC3 and remove Subs | |
ffmpeg -i input.mkv -acodec ac3 -vcodec copy -map 0 -map -0:s -analyzeduration 999999999 -probesize 999999999 ~/RPI/EXTERNAL/Tainies/output.mkv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
whole folder