I am working on a project that has almost exactly the same content except different version. I wish to know if it is possible to watch these two clips at the same time? The first clip being an avi file running for 5.35 while the second one runs for 4.55. both have the same beginning and ending. but i wish to know at which scene had been cut or changed exactly by looking at the frames. it is too difficult to notice these changes if i were to watch one at a time, as i can't compare exactly which frame differened from the other if the movement is too quick. any program out there that makes it all possible? be the format in avi or mpeg?
+ Reply to Thread
Results 1 to 11 of 11
-
-
AviSynth using StackHorizontal() will let you see them side by side, frame by frame.
If the videos don't have the same resolution then one of them will have to be resized to match the other before you can stack them."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
A simple avisynth script can do. Something like
a=AVISource("pathtoclip1")
b=AVISource("pathtoclip2")
StackHorizontal(A,b)
Load it into virtualdub or MPC and watch away.
The problem will be that they will get further and further out of sync over time, making the differences harder to see.Read my blog here.
-
Originally Posted by ione
Code:AVISource("pathtoclip1") ShowFrameNumber(x=100,y=100) ShowSMPTE(x=100,y=120) a=last AVISource("pathtoclip2") ShowFrameNumber(x=100,y=100) ShowSMPTE(x=100,y=120) b=last StackHorizontal(a,b)
-
You can also use ChangeFPS() on one of the clips to make the durations equal. For example, since the running time of the first file is ~13 percent longer than the second, you can decrease the frame rate of the second by ~13 percent to make it's running time the same. So if the second clip's frame rate is 25 fps, use ChangeFPS(22.015)
a=AVISource("pathtoclip1")
b=AVISource("pathtoclip2").ChangeFPS(22.015)
StackHorizontal(A,b) -
thanks everyone for your help. this is the solution i am looking for. but i am fairly new to scripts so i have yet to figure out how or where to start (putting all these). this site is great so i'm sure i'll find a way to do that, but may need help along the way.. will keep you posted guys.
-
what version of windows are you running? if running XP just open 2 instances of Mplayer2 which is an older version of windows media player still included in XP, you can then load the separate videos into each and hit the play buttons
-
I've seen side by side clips when they compare golf swings after lessons and on TV. Would this be comparable?? Anyone know what program they use?
Thanks -
Just use media player classic and goto view/options and choose open a new player for each media file played,use this as your default player and you can watch 3 different movies at the same time if wanted.
I think,therefore i am a hamster.
Similar Threads
-
Stream & Capture Simultaneously?
By GuidingLight in forum Video Streaming DownloadingReplies: 1Last Post: 19th Jul 2011, 16:15 -
9 camcorder feeds simultaneously over 4 days
By mhstein in forum Capturing and VCRReplies: 9Last Post: 24th May 2011, 21:33 -
Video Compare simultaneously software ?
By deadea59 in forum Software PlayingReplies: 7Last Post: 15th Jan 2011, 06:43 -
Feed and record simultaneously?
By nkordyjaka in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 2Last Post: 8th Oct 2010, 22:15 -
How do I watch online videos/clips/media on American sites when in Canada?
By Hank Kinsley in forum Video Streaming DownloadingReplies: 11Last Post: 17th Mar 2009, 18:33