Hi
#--> a cat here. However
Please download thanks
https://www.swisstransfer.com/d/f3a8d0de-644f-4ede-af4e-274bf6e777c2
In the package above I have 3 mxf files (file1.mxf file2.mxf file3.mxf)
and ffmpeg.exe
and ffmbc.exe
My target is to concatenate the 3 .mxf files into one so that the concatenated output is playable in Sony PDW-HD1500 deck, Sony PDW-700/F800 or Sony PDW-U1/U2 disc unit
maybe if you don't have one of this 3 sony deck is not possibile or it's difficult to test this thing. However
if I do:
the out.mxf file is not playable in Sony deckCode:ffmpeg -y -f concat -safe 0 -i concatList.txt -c:v copy -c:a copy out.mxf
Consider that the single .mxf files are fully playable in Sony decks, but the problem is that I cannot find a way that concatenate the 3 files
FFMBC encode right in .mxf but I cannot find an option that concatenate multiple files
for example:
generate a outFFMBC.mxf that works and is playable on the decks but this is not the concatenate of the 3 .mxf filesCode:ffmbc -y -i file1.mxf -vcodec copy -acodec copy -target xdcamhd422 outFFMBC.mxf -acodec pcm_s24le -ar 48000 -newaudio
----
and for example using ffmpeg:
outIncompatible.mxf is similar to the ffmbc 'one but don't works in the decksCode:ffmpeg -y -i file1.mxf -i file1.mxf -map 0:0 -map 1:a -pix_fmt yuv422p -vcodec mpeg2video -flags +ildct+ilme -top 1 -vtag xd5c -b:v 50000k -minrate 50000k -maxrate 50000k -acodec pcm_s24le -ar 48000 -f mxf outIncompatible.mxf
Is there a way to encode right using ffmpeg or another way that create .mxf concatenated files that are compatilble with the Sony decks? thanks
+ Reply to Thread
Results 1 to 2 of 2
-
Last edited by marcorocchini; 23rd Sep 2023 at 14:26.
-
maybe think "solved" using ffmpeg to concatenate, and ffmbc to remux
Code:ffmpeg64BitJuly2017.exe -y -threads auto -f concat -safe 0 -i AllRemuxConcatList.txt -map 0:? -ignore_unknown -vcodec copy -acodec copy "%cd%\TEMPoutputRoutine_1_solo_MXF.mxf" ffmbcX642017.exe -y -i "%cd%\TEMPoutputRoutine_1_solo_MXF.mxf" -vcodec copy -acodec copy -target xdcamhd422 "%cd%\outputRoutine_1_solo_MXF.mxf" -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio -acodec pcm_s24le -ar 48000 -newaudio
Similar Threads
-
MVKmerge/FFMPEG Command Line to Copy Subtitles but in disabled mode?
By kwanbis in forum Video ConversionReplies: 0Last Post: 23rd May 2023, 11:29 -
How to merge DASH segmented STPP subtitles from an encrypted stream?
By user1020 in forum Video Streaming DownloadingReplies: 0Last Post: 21st May 2023, 14:04 -
Loosing Overall Bitrate in Direct Copy Mode both in Virtualdub and Avidemux
By DBCOOPER1990 in forum EditingReplies: 1Last Post: 16th Mar 2023, 05:45 -
Stream Copy or Direct Stream Copy?
By Guernsey in forum Newbie / General discussionsReplies: 0Last Post: 27th Aug 2021, 21:03 -
MXF IBBP To MXF I frame only
By zahoor in forum Video ConversionReplies: 3Last Post: 27th Feb 2021, 13:54