I have to different videos with same content, and I'm only keeping one of them. Is there a program that makes it easy to compare the quality of the 2 videos?
+ Reply to Thread
Results 1 to 5 of 5
-
-
What, specifically, are you looking for ?
Quantify quality ?
You can have a look at the these tools to see if they fit
http://www.compression.ru/video/quality_measure/index_en.html
But the best judge is your own eyes.Read my blog here.
-
Try this:
https://www.videohelp.com/tools?tool=AVIcodec
Besides all its other functions, it shows the video quality of the video file analyzed -
Read my blog here.
-
You can run two instances of VirtualDubMod side by side to compare two videos.
You can use AVISynth and one instance of VirtualDubMod to compare two files with a AVS script like:
v1 = AviSource("video1.avi")
v2 = AviSource("video2.avi")
StackHorizontal(v1, v2)
An AVS comparison which also shows the differences between the two videos:
v1 = AviSource("video1.avi")
v2 = AviSource("video2.avi")
sub = v1.subtract(v2)
substrong = sub.levels(112,1,144,0,255)
return StackVertical(StackHorizontal(v1.subtitle("origina l"),v2.subtitle("encoded")),StackHorizontal(sub.su btitle("Difference"),substrong.subtitle("Differenc e amplified")))
Similar Threads
-
best audio video quality of youtube poor quality and not hq flv videos.
By nusratjaveid in forum Video ConversionReplies: 3Last Post: 20th Jun 2010, 19:23 -
Creating crisp/quality videos
By Jjaeger240 in forum Newbie / General discussionsReplies: 2Last Post: 14th Jun 2009, 16:11 -
How could I improve the quality of my YouTube videos?
By Nintendo Fan in forum Newbie / General discussionsReplies: 55Last Post: 4th Feb 2009, 11:29 -
Compare video quality
By cd090580 in forum Newbie / General discussionsReplies: 12Last Post: 1st Apr 2008, 19:49 -
Video Quality compare/meter
By no_alone in forum Video ConversionReplies: 8Last Post: 11th Mar 2008, 06:57