View Single Post
Old 05-21-2009, 10:30 AM  
JamesK
hi
 
Industry Role:
Join Date: Jun 2002
Posts: 16,731
Quote:
Originally Posted by Killswitch View Post
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 View Post
i'll just keep me trap shut next time
Please don't, I love you too
__________________
M3Server - NATS Hosting
JamesK is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote