Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | Last revisionBoth sides next revision | ||
x264_quality [2014/08/17 21:44] – beandog | x264_quality [2014/08/17 21:46] – [SSIM] beandog | ||
---|---|---|---|
Line 53: | Line 53: | ||
Rounding it out to an integer, would be 55, for a result of 55%. So when encoding this particular video at double the bitrate, the SSIM increases by 55%. Not bad! | Rounding it out to an integer, would be 55, for a result of 55%. So when encoding this particular video at double the bitrate, the SSIM increases by 55%. Not bad! | ||
+ | |||
+ | Here's a PHP function to do the same thing: | ||
+ | |||
+ | < | ||
+ | function ssim_improvement($old_ssim, | ||
+ | |||
+ | $a = 1 - $old_ssim; | ||
+ | $b = 1 - $new_ssim; | ||
+ | |||
+ | $c = $a / $b; | ||
+ | |||
+ | $d = $c - 1; | ||
+ | |||
+ | $e = $d * 100; | ||
+ | |||
+ | return $e; | ||
+ | |||
+ | } | ||
+ | </ |