I had to modify class.video_thumb.php
Did you look there ?

Check these pieces of code:

Code:
		$imagewidth = $imagedata[0];
		$imageheight = $imagedata[1];
		$imagetype = $imagedata[2];
Code:
		unlink($thumb_folder . '/' . $t_info['vid'] . ".jpg");
		unlink($thumb_folder . '/1_' . $t_info['vid'] . ".jpg");
		unlink($thumb_folder . '/2_' . $t_info['vid'] . ".jpg");
		unlink($thumb_folder . '/3_' . $t_info['vid'] . ".jpg");
and

Code:
		} elseif ($imagetype == 3) {
I'm wondering if you add

Code:
$imagetype = $imagedata[3];
$imagetype = $imagedata[4];
and

Code:
unlink($thumb_folder . '/4_' . $t_info['vid'] . ".jpg");
unlink($thumb_folder . '/5_' . $t_info['vid'] . ".jpg");
and change the elseif to
Code:
		} elseif ($imagetype == 5) {
and check around for anything else with "3" in it....

That how you did it whitenoise?