Hi I have been succesfully doing allsorts of video conversions for a while now but I need to know of a program that will display multiple videos within the same video at the same time or multiple .gif files within the main video
+ Reply to Thread
Results 1 to 4 of 4
-
-
I do know Avisynth can show four videos at the same time.
-
can this be burnt as a VCD and still display the four videos at the same time?
-
Yes, the hard part is making the script do what you want. Then once the script is acting as it should, you frameserve the script from Virtual Dub to TMPGEnc and have TMPGEnc encode it as your VCD template at the same time. I wish I could take credit for the following script, but I modified it from the crop and split function from the Avisynth guide:
one=AVISource("C:\flipvideoA.avi").BicubicResize(1 76,120)
two=AVISource("C:\flipvideoB.avi").BicubicResize(1 76,120)
three=AVISource("C:\flipvideoC.avi").BicubicResize (176,120)
four=AVISource("C:\flipvideoD.avi").BicubicResize( 176,120)
q1=one
q2=two
q3=three
q4=four
l1=StackHorizontal(q4,q3)
l2=StackHorizontal(q2,q1)
StackVertical(l1,l2)Hello.
Similar Threads
-
Check Video codes of multiple video files at once
By indijay in forum Newbie / General discussionsReplies: 3Last Post: 18th Apr 2012, 15:09 -
Video editing software that supports importing video with multiple audio?
By elgy in forum Newbie / General discussionsReplies: 5Last Post: 15th Nov 2011, 19:32 -
Multiple Video Issues
By hi2shy in forum Authoring (Blu-ray)Replies: 8Last Post: 12th Sep 2010, 11:58 -
Multiple Video Tracks in One Video File
By Kyrad in forum Newbie / General discussionsReplies: 2Last Post: 10th May 2010, 11:25 -
Multiple video on screen
By pertu in forum Software PlayingReplies: 4Last Post: 10th Sep 2008, 08:49