Hi, I have a giant list of MP4 wrapped MPEG-2 Videos. I need to add about 5 seconds of blank video to the end of every one. If I created a video that matches the codec, is there a program that could add this video to the end of every single MP4? Also, I wouldn't mind repacking to mkv if I cant find a program that will work with MP4 and I don't mind having to pay for one either. Thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
I don't know where you have the mp4 files but a batch file like
Code:if not exist concat md concat for %%g in (*.mp4) do ( echo file '%%g' > concat.txt echo file black.mp4 >> concat.txt ffmpeg -f concat -i concat.txt -c copy concat\%%g )
-
this could add the black video to the end of all MP4s in a given folder? Do I just put the directory in place of *.mp4 ?
-
Do I just put the directory in place of *.mp4 ?
And again: provided your mp4 file matches black.mp4
Similar Threads
-
Batch trim end of multiple length videos
By Budman1 in forum Video ConversionReplies: 3Last Post: 10th Dec 2019, 06:22 -
Batch Adding Chapters to Multiple MKV Files
By Shady in forum Newbie / General discussionsReplies: 15Last Post: 2nd Jun 2018, 09:34 -
Need help adding black frames to beginning and ending of mp4-no reencode
By Danfun64 in forum Newbie / General discussionsReplies: 28Last Post: 26th Jan 2016, 01:46 -
Adding Black Bars to MP4 Video
By DonSeenu in forum Newbie / General discussionsReplies: 9Last Post: 2nd Nov 2015, 22:02 -
Changing the resolution of MP4 video by adding black band to top and bottom
By Crea in forum Video ConversionReplies: 10Last Post: 15th Aug 2015, 17:18