How to add intro to multiple videos?

Dresden

Elite Member
Joined
Mar 10, 2014
Messages
2,657
Reaction score
1,606
Any software out there that can do this at once??

I've read some posts about ffmpeg but I'm not sure how to use that and I need a quick solution.

I've even looked up video tutorials but I couldn't find an exact one for batch adding.

Help please
 
This simple bash command does the job

Code:
#!/bin/bash
VIDEOS=/path/to/videos/folder/*
for v in $VIDEOS
do
  echo "Processing $V file..."
  # insert your ffmpeg comand to merge your intro with the video
  cat $f
done

The above command will loop through all the video files in this folder /path/to/videos/folder/ and runs ffmpeg merge command
 
Ok well I'm going to start with at step one by combining intro+video

I used this: ffmpeg -i "concat:Intro.mp4|video2.mp4" -c copy VIDEOTagged.mp4

But what I get is a new file with only the intro. It does not combine the two. Both files are .mp4, same size, and same FPS.

What could I be doing wrong?
 
Back
Top