The thread title may not be the best wording, but I couldn't figure out a better way to word it so my apologies if you find this to be a poor thread title..moving on...
Occasionally I need to convert the audio of problematic MKVs and remux them back in to MKV. I use ffmpeg like so:
This gets the job done but I either need to insert the target file name manually in the cli or I rename "output.mkv." Instead, is it possible to take the filename of the source mkv and simply append a 1 to the filename? So if *.mkv finds somevideo.mkv can I make it so the remux files would automaticly be named somevideo1.mkv?
Occasionally I need to convert the audio of problematic MKVs and remux them back in to MKV. I use ffmpeg like so:
Code:
ffmpeg -i *.mkv -vcodec copy -acodec ac3 -ab 256000 output.mkv
Comment