View Single Post
Old 23rd July 2008, 22:04   #21  |  Link
rack04
Registered User
 
Join Date: Mar 2006
Posts: 1,538
Quote:
Originally Posted by LoRd_MuldeR View Post
Try this in Avisynth:

Code:
clip1 = DirectShowSource("C:\MyEncode1.foo", audio=false)
clip2 = DirectShowSource("C:\MyEncode2.foo", audio=false)

StackVertical(clip1,clip2)

Just to add on this script. I always add a subtitle so that I know what I'm comparing.

For example:

Code:
source1 = DirectShowSource("C:\Personal\Videos\Van Helsing DXVA-HD-FAST.mp4",fps=23.9759856527702,audio=false)
source2 = DirectShowSource("C:\Personal\Videos\Van Helsing SA-HD-DVD.mp4",fps=23.9759856527702,audio=false)

StackVertical(source1.subtitle("DXVA-HD-FAST"),source2.subtitle("SA-HD-DVD"))
rack04 is offline   Reply With Quote