PDA

View Full Version : How to create a HH:MM:SS Script with split screen ?


xbox360
13th April 2009, 15:21
Hello to everyone, I would like to take 2 similar videos & render them to hd side by side, like left is vhs & right is HD, also I would like to have a time stamp in the middle bottom that shows hours:minutes:seconds. both my source will be 24p 1920x1080 image sequence. Is it possible to create a script for me ? also please include an option where I can align the left & right video to match.

Comatose
13th April 2009, 15:48
also there is a time stamp in the middle bottom that shows hours:minutes:seconds
Your wording is weird, it conflicts with the title. Is there already a timestamp there? Do you want to make a timestamp there?

Please put more effort into wording your posts properly...

xbox360
13th April 2009, 15:58
Your wording is weird, it conflicts with the title. Is there already a timestamp there? Do you want to make a timestamp there?

Please put more effort into wording your posts properly...

Sorry

Wilbert
13th April 2009, 16:11
http://avisynth.org/mediawiki/ShowSMPTE

xbox360
13th April 2009, 16:15
How about the left & right split ?

Alex_ander
13th April 2009, 17:16
Like this:

a=AviSource("video1.avi").Crop(0,0,-960,0).Trim(86,0)#left half
b=AviSource("video2.avi").Crop(960,0,0,0)#.Trim(somebiggernumber,0)#right half
StackHorizontal(a,b)

Trim is for matching by frame content. Audio will be used from the first clip.

xbox360
13th April 2009, 17:32
Thanks, but my source is image sequence, how do I load image sequence ?

Wilbert
13th April 2009, 18:06
ImageSource. Btw, it doesn't hurt to read the documentation a bit.