Using:
I get:Code:ffmbc -y -i "E:\Temp\Clip1ATK198_17_35_24_8410_03.mov" -i "E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav" -i "E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav" -vcodec copy -acodec copy -map 0:0 -map 1:0 -map 2:0 -aspect 177778:100000 -r 30000/1001 -f mov "E:\Output\Clip1ATK198.mov"
Using the same call but with ffmpeg works fine.Code:FFmbc version N-32104-ga751c9271a Copyright (c) 2008-2016 Baptiste Coudurier and the FFmpeg developers Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'E:\Temp\Clip1ATK198_17_35_24_8410_03.mov': Metadata: major_brand: qt minor_version: 512 compatible_brands: qt encoder: Lavf58.44.100 Duration: 00:00:01.06, bitrate: 140671 kb/s Stream #0.0(und): Video: prores, yuv422p10le, 1920x1080i tff, 140699 kb/s, 29.97 fps Input #1, wav, from 'E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav': Duration: 00:00:01.00, bitrate: 1152 kb/s Stream #1.0(und): Audio: pcm_s24le, 48000 Hz, mono, s32, 1152 kb/s Input #2, wav, from 'E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav': Duration: 00:00:01.00, bitrate: 1152 kb/s Stream #2.0(und): Audio: pcm_s24le, 48000 Hz, mono, s32, 1152 kb/s Number of stream maps must match number of output streams
-> does anyone know how to mux the files using ffmbc ?
Cu Selur
+ Reply to Thread
Results 1 to 7 of 7
-
users currently on my ignore list: deadrats, Stears555, marcorocchini
-
It's a bit cryptic ; you use no audio (-an) , then add -newaudio for each audio track , using -map_audio_channel for the audio input/output file/stream/channel maps
Code:-map_audio_channel (in_file):(in_stream):(in_channel):(out_file):(out_stream):(out_channel)
Code:ffmbc -y -i "E:\Temp\Clip1ATK198_17_35_24_8410_03.mov" -i "E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav" -i "E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav" -map 0:0 -vcodec copy -an out.mov -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio -map_audio_channel 1:0:0:0:1:0 -map_audio_channel 2:0:0:0:2:0 -aspect 177778:100000 -r 30000/1001 -f mov "E:\Output\Clip1ATK198.mov"
-
That's really cryptic and it doesn't work either:
Code:ffmbc -y -i "E:\Temp\Clip1ATK198_17_35_24_8410_03.mov" -i "E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav" -i "E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav" -map 0:0 -vcodec copy -an out.mov -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio -map_audio_channel 1:0:0:0:1:0 -map_audio_channel 2:0:0:0:2:0 -aspect 177778:100000 -r 30000/1001 -f mov "E:\Output\Clip1ATK198.mov" FFmbc version N-32104-ga751c9271a Copyright (c) 2008-2016 Baptiste Coudurier and the FFmpeg developers Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'E:\Temp\Clip1ATK198_17_35_24_8410_03.mov': Metadata: major_brand: qt minor_version: 512 compatible_brands: qt encoder: Lavf58.44.100 Duration: 00:00:01.06, bitrate: 140671 kb/s Stream #0.0(und): Video: prores, yuv422p10le, 1920x1080i tff, 140699 kb/s, 29.97 fps Input #1, wav, from 'E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav': Duration: 00:00:01.00, bitrate: 1152 kb/s Stream #1.0(und): Audio: pcm_s24le, 48000 Hz, mono, s32, 1152 kb/s Input #2, wav, from 'E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav': Duration: 00:00:01.00, bitrate: 1152 kb/s Stream #2.0(und): Audio: pcm_s24le, 48000 Hz, mono, s32, 1152 kb/s Number of stream maps must match number of output streams
users currently on my ignore list: deadrats, Stears555, marcorocchini -
Sorry I copy pasted your command (I had 2 output files), but the order matters for the output file; it can't be at the end
This template works. Notice out.mov is in the middle after -an
Code:ffmbc -i video.mov -i a1.mov -i a2.mov -map 0:0 -vcodec copy -an out.mov -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio -map_audio_channel 1:0:0:0:1:0 -map_audio_channel 2:0:0:0:2:0
-
Thanks!
Code:ffmbc -y -i "E:\Temp\Clip1ATK198_17_35_24_8410_03.mov" -i "E:\Temp\iId_1_aid_0_lang_en_17_35_24_8410_01.wav" -i "E:\Temp\iId_2_aid_1_lang_en_17_35_24_8410_02.wav" -map 0:0 -vcodec copy -an-aspect 177778:100000 -r 30000/1001 -f mov "E:\Output\Clip1ATK198.mov" -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio -map_audio_channel 1:0:0:0:1:0 -map_audio_channel 2:0:0:0:2:0
Now the question is: Is this also possible with '-acodec copy'?
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Okay, thanks!
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
FFmbc version N-32083-g8b91f67
By El Heggunte in forum Video ConversionReplies: 9Last Post: 7th Nov 2017, 09:33 -
FFMBC 0.7.4 now encode XDCAM ok, and FFMPEG?
By marcorocchini in forum Newbie / General discussionsReplies: 7Last Post: 6th Oct 2017, 04:24 -
FFMBC: how to add an audio track?
By marcorocchini in forum Newbie / General discussionsReplies: 9Last Post: 5th Jan 2017, 04:28 -
ffmbc new release?
By SameSelf in forum Video ConversionReplies: 3Last Post: 10th Oct 2016, 12:21 -
ffmbc wiki gone?
By SameSelf in forum Newbie / General discussionsReplies: 2Last Post: 2nd Mar 2016, 07:04