VideoHelp Forum




+ Reply to Thread
Results 1 to 11 of 11
  1. Member
    Join Date
    Jun 2005
    Location
    Asia
    Search Comp PM
    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?
    Quote Quote  
  2. Member gadgetguy's Avatar
    Join Date
    Feb 2002
    Location
    West Mitten, USA
    Search Comp PM
    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
    Quote Quote  
  3. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    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.
    Quote Quote  
  4. Member AlanHK's Avatar
    Join Date
    Apr 2006
    Location
    Hong Kong
    Search Comp PM
    Originally Posted by ione
    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?
    To show the frame numbers and times, modify gunslinger's script:


    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 step through this in VirtualDub frame by frame by clicking right-arrow.
    Quote Quote  
  5. 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)
    Quote Quote  
  6. Member
    Join Date
    Jun 2005
    Location
    Asia
    Search Comp PM
    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.
    Quote Quote  
  7. AvsP is a good program to help you create scripts.
    Quote Quote  
  8. Member
    Join Date
    Jun 2005
    Location
    Asia
    Search Comp PM
    Thanks, jagabo. Tried AvsP and got it to work. Everyone's been helpful.
    Quote Quote  
  9. Member darkknight145's Avatar
    Join Date
    Feb 2007
    Location
    Australia
    Search PM
    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
    Quote Quote  
  10. 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
    Quote Quote  
  11. I'm a Super Moderator johns0's Avatar
    Join Date
    Jun 2002
    Location
    canada
    Search Comp PM
    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.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!