I got a blu-ray on hdd and normally extract one audio track at a time which isn't really bothering me since I normally only need one audio track.
Now I want to extract multiple audio streams and it takes quite some time to do this, so my question to all those ffmpeg experienced is:
Is there a way to extract multiple audio streams in parallel somehow?
so that I can do the whole:
in one go? (hoping that it will speed up the whole process)Code:ffmpeg -y -i bluray:"H:/bd_probs/TestBD" -playlist 800 -map 0:1 -vn -acodec copy "F:\temp\iId_5_aid_4352_lang_eng.dts" ffmpeg -y -i bluray:"H:/bd_probs/TestBD" -playlist 800 -map 0:2 -vn -acodec copy "F:\temp\iId_7_aid_4353_lang_eng.dts" ffmpeg -y -i bluray:"H:/bd_probs/TestBD" -playlist 800 -map 0:3 -vn -acodec copy "F:\temp\iId_10_aid_4354_lang_spa.dts" ffmpeg -y -i bluray:"H:/bd_probs/TestBD" -playlist 800 -map 0:4 -vn -acodec copy "F:\temp\iId_13_aid_4355_lang_fra.dts"
Cu Selur
+ Reply to Thread
Results 1 to 4 of 4
-
-
I think it's basically ...
Code:ffmpeg -i "Input" -vn -acodec copy -map 0:1 -y "output1.dts" -acodec copy -map 0:2 -y "output2.dts" -acodec copy -map 0:3 -y "output3.dts"
Similar Threads
-
Trying to extract 1 image from multiple videos with FFMPEG
By mordor in forum Newbie / General discussionsReplies: 2Last Post: 13th Apr 2013, 18:31 -
FFMPEG: extract frames
By mogadanez in forum Video ConversionReplies: 6Last Post: 4th May 2012, 11:06 -
Authoring targeting PAL and NTSC in parallel
By BobAchgill in forum Authoring (DVD)Replies: 4Last Post: 16th Apr 2010, 02:48 -
How to merge parallel(simultaneous) video streams ?
By buddhikasgj in forum ProgrammingReplies: 0Last Post: 31st Oct 2008, 12:56 -
Any reason to continue using my parallel printer cable?
By zzyzzx in forum ComputerReplies: 25Last Post: 19th Jun 2008, 06:51