View Full Version : Digital video analysis tool ?
MaeWanto
21st May 2005, 11:22
I'm looking for a tool able to display the value of each pixel ( after decoding step, not in compressed domain ). My goal is to identify differences between two files, before and after visually lossless transcoding. I need to know the value of each pixel's components ( RGB or YUV, depending on video's internal color space ) in order to adjust encoding parameters and get the less possible differences after decoding.
Any recommendations ?
reepa
21st May 2005, 12:51
A good way to find differences between videos is to use AviSynth:
clip1=AviSource("pathtoyourfilehere")
clip2=AviSource("pathtoyourfilehere")
Subtract(clip1,clip2)
You can then amplify the results with Levels or something similar.
Mug Funky
21st May 2005, 13:05
also there's "compare(clip1,clip2)", but that needs to be fed with yuy2.
this will give stats on PSNR, which though not a perfect indicator of visual quality (for example inloop filter gives lower PSNR, but better perceptual quality than blocks), it is certainly fine for choosing settings for an encoder. the higher the number, the closer to the original.
MaeWanto
22nd May 2005, 11:14
Hi Reepa and Mug Funky,
Thanks a lot for your help, I'll try your recommendations with my videos. However, I'm still very interested in getting a tool which displays the value every pixel's components for compressed and uncompressed videos ( and for as much codecs and file formats as possible ... ).
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.