Looking For: How To Merge Intro-Clip to several Videos - Intro-Video-Merger

Intro-Video-Merger - Merge Intro to several Videos

I am searching for a easy solution to merge a Intro-Clip to
several (hundreds) clips automaticaly.
It take to much time to do it by my own.
_So i take one video and attache an intro at the beginning and i render it, _
and i do this procedure with hundreds of vidoes.

I am searching it for 2 years, I asked a lot of people and i was in a lot of forums but i found nothinig.
The programs i use are AE & Vegas.

I really hope to get some help here.

PS: I am new in this forum, i am sorry if i did a mistake and sorry for my bad english.

Ffmpeg is your friend for automatic video processing! I use it all the time in my capacity as code course editor here at Envato Tuts+. You can do almost any kind of repetitive filter, edit, encoding, etc. from the command line. And anything you can do from the command line, you can automate for hundreds of files.

Here’s a recent tutorial on how to convert vertical to horizontal video in ffmpeg from the command line:

It should give you an idea of the power of ffmpeg and how it works.

The specific filter you’ll need is concat. https://ffmpeg.org/ffmpeg-filters.html#concat

And you’ll use a command line something like this (from http://trac.ffmpeg.org/wiki/Concatenate):

ffmpeg -i input1.mp4 -i input2.mp4 \
-filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]" \
-map "[v]" -map "[a]" <encoding options> output.mp4

Let me know if any of that makes sense to you!

(@jacksoncouse This could be a fun follow-up to the vertical/horizontal post above.)

Thank you dear,

i tried to use Ffmpeg and i watched a lot of tutorials but i can’t use it.
Im not an Beginner, but i really don’t understand Ffmpeg.

Is there another more simple way to do that?

THX