This might sound a bit strange. I was asked by a friend if there is a movie player for the window system that can play multiple movie files at the same time in a single window, i.e, the player's window is devided into N blocks and each plays a different movie. If there is no such a player, is there a software that can achieve the same effect ? Thanks.
+ Reply to Thread
Results 1 to 4 of 4
-
-
AVISynth with stackvertical and stackhorizontal. They need to be the same framerate though, also easier if they share the same width or height, but you can always pad with black.
eg. two 640x272 avi files, first PAL the other NTSC film.
top = avisource("one.avi")
bot = avisource("two.avi").assumefps(25).ensureVBRmp3syn c().TimeStretch(tempo = (100.0*25.0)/23.976)
stackvertical(top,bot)
At least something like that. -
celtic_druid, thanks for the reply. I'll give a try, is it possible to add some interactive functions so that the playing could be controlled ?
-
Well you can control it via whatever player you are using, just not each one seperatly. It will behave as a single video file. Also in the above with ensureVBRmp3sync, don't bother trying to seek.
Similar Threads
-
Need help for Window/VLC Media Player
By Neil_2004 in forum Video Streaming DownloadingReplies: 2Last Post: 27th Feb 2012, 19:05 -
Capturing (Sony Vegas vs Window Movie Maker)
By Clear_Mist in forum Capturing and VCRReplies: 10Last Post: 3rd Oct 2011, 20:15 -
Why can't you copy a video player window?
By sldvd in forum Newbie / General discussionsReplies: 2Last Post: 23rd Apr 2010, 18:34 -
window media player does not work
By romanstopme in forum ComputerReplies: 8Last Post: 6th Dec 2008, 12:21 -
Window Media Player and TV
By BobV in forum Newbie / General discussionsReplies: 1Last Post: 11th Feb 2008, 16:34