is there any tool/software which joins 3 seconds intro to all 100 videos in batch, i forgot to put into.
+ Reply to Thread
Results 1 to 6 of 6
-
-
If your intro is encoded with the same parameters as your 100 videos, then you can use the FFmpeg concat demuxer to join them.
-
ffmpeg is the answer I would also give.
[Edit]
I just tried this out and it did indeed add the same video to the beginning of every file in the folder:
Code:for %%A IN (*.mpg) DO ffmpeg -i "concat:test.mpg|%%A" -c copy "new_%%A"
[Edit 2]
To use this, you put a copy of ffmpeg in the folder that holds all your videos. You then copy the line above to Notepad and save it in that same folder with extension ".bat". Make sure the extension is .bat and not .txt.
You then run that batch file (double-click on it in Explorer) to cause ffmpeg to do its thing.Last edited by johnmeyer; 11th Dec 2018 at 19:32.
-
Similar Threads
-
cut/delete first 5 seconds of 100s of videos
By gta5 in forum EditingReplies: 4Last Post: 22nd Nov 2018, 05:08 -
Youtube videos pixelated every 5 seconds
By Warcraft3 in forum Video Streaming DownloadingReplies: 81Last Post: 11th Sep 2016, 02:58 -
Needed Adding Intro in batch
By bravelighter in forum Video ConversionReplies: 6Last Post: 18th May 2016, 01:30 -
batch remove the last 30 seconds of mkv files without reencoding?
By alc112 in forum EditingReplies: 5Last Post: 5th Oct 2014, 15:46 -
Tool for batch scaling and conversion
By MedConv in forum Video ConversionReplies: 7Last Post: 22nd Jul 2014, 13:24