View Single Post
Old 27th September 2019, 08:37   #103  |  Link
mdalacu
Registered User
 
mdalacu's Avatar
 
Join Date: May 2014
Location: Bucharest, Romania
Posts: 109
Quote:
Originally Posted by Bigmango View Post
Thanks for this great app !

Please add options for:
  1. eac3 audio in the list of codecs
  2. enable/disable audio and subtitle flags (forced, default...)
  3. stream duplication (i.ex: right click to duplicate a stream) (i.ex my use case: to keep source TrueHD/DTSMA/DTS audio/subtitle and add a duplicate with another codec, so the mkv can also be played on devices that don't support the source codec)

Example command line of what I need to do very often:


Code:
ffmpeg -i source.mkv -map 0:0 -map 0:2 -map 0:2 -map 0:1 -map 0:1  -map 0:3 -map 0:4 -map 0:5 -c:v copy -c:a:0 copy -c:a:1 eac3 -c:a:2 copy -c:a:3 eac3 -b:a:1 1536k -b:a:3 768k -c:s copy output.mkv
(this reorders the audio (0:2 before 0:1) and duplicates 2 audio tracks (0:1 and 0:2) with a 2nd eac3 copy with different bitrates for each eac3 stream, and keeps all the subtitles).

Many thanks !
1. will see
2. i don't think ffmpeg supports this flags
3. as an workaround, just add the source file twice and disable all the other streams from the second source leaving only the desired audio which you will convert with a different settings.
i hope this helps.
mdalacu is offline   Reply With Quote