VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. 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?
    Quote Quote  
  2. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    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.
    Quote Quote  
  3. Member
    Join Date
    Sep 2005
    Location
    Spain
    Search Comp PM
    Try this:
    https://www.videohelp.com/tools?tool=AVIcodec
    Besides all its other functions, it shows the video quality of the video file analyzed
    Quote Quote  
  4. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    avicodec (and g-spot and a few others) shows the quality setting used by the encoder. Realistically this is meaningless in terms of the quality of the image, as all it refers to is the quality setting of the encoding itself. A poor image, really well encoded, is still a poor image.
    Read my blog here.
    Quote Quote  
  5. 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")))

    Quote Quote  



Similar Threads

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