Quote:
Originally Posted by Killswitch
If you wanna make it more random, say just a random frame from the video, you can do this...
Code:
<?
$movie = new ffmpeg_movie($_GET['f'], false);
$frame = $movie->getFrame(rand(1, getFrameCount());
$im = $frame->toGDImage();
header('Content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
?>

|
Thanks bud, that'll come in handy
Quote:
Originally Posted by SmokeyTheBear
i'll just keep me trap shut next time 
|
Please don't, I love you too
