Does anyone know of any method that I can use to merge my split files with different resolutions together to form one big file? I want to try doing that with Virtualdub2, AVISynth or FFMPEG.
+ Reply to Thread
Results 1 to 4 of 4
-
-
Some containers allow for changing resolutions on-the-fly. But some players will not handle such video correctly. For example, ffmpeg can mux different resolution files into an mp4 or ts container:
Code:ffmpeg -f concat -i list.txt -c copy mix.mp4
Code:file 'video1.mp4' file 'video2.mp4' file 'video3.mp4'
For a video that plays properly in all players you want to reencode the videos to make them all the same resolution. You can do that in AviSynth with resizing, adding borders, and/or cropping. -
I see. So you use FFMPEG to mux avi to mp4 but I learned that not every codec is supported by the mp4 container. How do you make it so that FFMPEG know that I want to use mp4 and x264?
For a video that plays properly in all players you want to reencode the videos to make them all the same resolution. You can do that in AviSynth with resizing, adding borders, and/or cropping. -
In AviSynth you open each video, resize, crop, and/or addborders to make them all the same size, then append the segments.
Code:v1 = WhateverSource("file1.ext").Spline36Resize(...).Crop(...).AddBorders(...) v2 = WhateverSource("file2.ext").Spline36Resize(...).Crop(...).AddBorders(...) v3 = WhateverSource("file3.ext").Spline36Resize(...).Crop(...).AddBorders(...) v1++v2++v3
Similar Threads
-
How can you merge video files in Vidcutter?
By Stears555 in forum Video ConversionReplies: 3Last Post: 13th Apr 2021, 12:59 -
How to merge audio.ts and video.ts files togeteher?
By varjakas in forum Video ConversionReplies: 1Last Post: 23rd Mar 2021, 12:42 -
Attributes that MUST be identical for 2 video files to merge successfully
By FeloniusMonk in forum Newbie / General discussionsReplies: 2Last Post: 30th Dec 2018, 10:00 -
How merge X video files without opening video compression (it possible ? )
By yanshof in forum Newbie / General discussionsReplies: 9Last Post: 29th Dec 2017, 16:07 -
(Help Needed with ffmpeg) how do i batch merge audio files to video files
By wander799 in forum Newbie / General discussionsReplies: 5Last Post: 20th Nov 2016, 14:40