Hi all
First of all i would like 2 say a BIG thanks 4 all the info and guides that can be found hear for everything related to video stuff as this has helped me out manny times in the past
this is my first post so please move this post if this is in the wrong forum
i have some video files of days out , xmass , new year , partys etc etc.
i can convert and burn them to a vcd but is it possible to have two video files playing at the same time like xmass on the left side and new years on the right side , then burn that to a cd so as you watch it you can see xmass on the left of the tv , and new years on the right .
kind of like two people playing a ps2 or xbox game in split screen
do you know what i meen
i hope someone will be able 2 shead some light on this
thanks
+ Reply to Thread
Results 1 to 9 of 9
-
-
I've done it using a combination of AVIsynth and VirtualDub. In AVIsynth, use a 'weave' followed by 'assumeframebased'. In VirtualDub, use the 'deinterlace - unfold fields side by side' filter. Then resize to suit.
Darryl -
No.
DVD Players don't support dual monitors/outputs. Some have multiple outputs (composite/S-Video/Composite), but they all output the same thing.
You can combine 2 seperate videos into 1 screen. AVISynth can do this easily, so it's a split screen. You will want to do SVCD/DVD and not VCD since a low-resolution encode (VCD is low res) would look terrible with 2 screens worth of images.
Basically use AVISynth (freeware) to combine the 2 video's. Then encode in TMPGEnc (or CCE or Mainconcept). Burn with your favorite burning application.
A little searching should give you the AVIsynth script you need, someone else asked for that last week.To Be, Or, Not To Be, That, Is The Gazorgan Plan -
Yes, it can be done. I often do this to evaluate the performance of filters that I am using. Use a script something like this:
V1=mpeg2source("your path here\VID1.D2V")
V2=mpeg2source("your path here\VID2.D2V")
stackhorizontal(V1,V2)
You can crop/resize either or both videos to your viewing preferences.ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
I believe you could also do this very easily in EditStudio, merely by placing one video on one track and the second on another, then using the placement command to resize each of them so they appear side-by-side. I tried this without burning and it appears to work. However, I think you could only get one audio track to play. There might be a way in an advanced authoring app to put both audio tracks in and switch between them, but that is beyond my current skill level. Good luck!
BadgerBoy -
I don't know if anyone is interested but the following script will also provide audio for both clips as well:-
vid1=directshowsource("d:\capture 1\file1.mpg").LanczosResize(352,288).killAudio
vid2=directshowsource("d:\capture 1\file2.mpg").LanczosResize(352,288).KillAudio
vid=StackHorizontal(vid1,vid2)
track1=directshowsource("d:\capture 1\file1.mpg")
track2=directshowsource("d:\capture 1\file2.mpg")
aud=MixAudio(track1,track2,0.50,0.50)
audiodub(vid,aud)
Similar Threads
-
Blu-ray .mkv files won't play both audio and video at the same time
By birdbrainblue in forum Software PlayingReplies: 2Last Post: 20th Jan 2012, 06:42 -
watching video files on television
By thekenoshakid in forum Newbie / General discussionsReplies: 11Last Post: 4th Dec 2011, 13:31 -
problems watching some avi files
By tricks in forum Video ConversionReplies: 1Last Post: 2nd Sep 2010, 23:55 -
Is there a program to schedule time for playing video files
By Chewbacco in forum Software PlayingReplies: 2Last Post: 19th Dec 2009, 05:21 -
How do i convert multiple VOB files at 1 time using PSP Video 9
By mac7654321 in forum Video ConversionReplies: 1Last Post: 22nd Sep 2007, 06:59