PDA

View Full Version : how to write difference frame in h264?


nilgosavi
7th December 2005, 14:47
how to write difference frame in h264?

acidsex
7th December 2005, 15:51
Probably better suited for the Mpeg-4 AVC forum. Just a hunch.

akupenguin
8th December 2005, 04:33
How to write more than 7 words describing what you want to do?

Haze_NZ
8th December 2005, 08:12
I think he might be suggesting how to do something similar to an AviSynth 'SeeTheDifference' script.

Here is what I suggest *if* that is what you are trying to do ('cept with H264 video).

#Load original clip
clip1 = DirectShowSource("original.mp4").ConvertToYUY2()

#Load the encoded clip
clip2 = DirectShowSource("").ConvertToYUY2()

#Show the difference
clip1.subtract(clip2)


EDIT: I'm probably wrong about my assumption, so yeah, please correct me.