I need some quick advice. I have a bunch of elementary .264 streams. What is the easiest way to go about concatenating these losslessly. I tend to prefer CLI over GUIs. So if there is a way to do this using ffmpeg or something similar that would be great.
+ Reply to Thread
Results 1 to 10 of 10
-
-
It might be possible to concatenate them binary (copy /b). But better mutliplex them to MP4 and concatenate those in MP4Box, IMHO (doom9 thread).
No warranties.
It will be useful to have them encoded "--stitchable" in x264 (unfortunately this option may be partially undocumented, or not available in every build). -
Thank you for the suggestion. Converting them to mp4 is not desired. I should have mentioned that these are bluray compliant encodes that I am using to author a bluray. So I need to produce an elementary .264 stream.
-
In this case, concatenate them logically, not physically. A Blu-ray authoring tool should be able to create playlists loading each of them in separate MTS files via generating MPLS playlists.
-
I wish it were that simple. But when generating playlists, the Next button does not work on the remote. Is this a defect in the authoring tool or a consistent feature of MPLS? Thanks.
-
ffmpeg to concatenate multiple .h264 files, specified in a list file:
Code:ffmpeg.exe -f concat -i files.txt -c copy output.h264
Code:file 'video1.h264' file 'video2.h264' file 'video3.h264'
-
-
-
Similar Threads
-
Losslessly demux elementary streams
By SameSelf in forum Video ConversionReplies: 7Last Post: 20th Sep 2015, 23:49 -
H.264/MPEG-4 AVC streams are playing in avi container.
By Ganesh Ujwal in forum Software PlayingReplies: 2Last Post: 16th Jul 2012, 11:25 -
Concatenate videos
By indijay in forum Newbie / General discussionsReplies: 0Last Post: 6th Jun 2012, 07:29 -
split .264 and .m4a streams
By codemaster in forum EditingReplies: 2Last Post: 3rd Mar 2011, 15:42 -
Suggestions to cut raw H.264 video streams?
By AshleyQuick in forum EditingReplies: 0Last Post: 28th Jan 2011, 13:28