ffmpeg-php $frame->gdimage(); Images are created with a green/blue tint
- by dropson
I'm trying to create stillimages with PHP-FFMPEG; but suddenly after installing FFMPEG and FFMPEG-PHP from scratch on a brand new server, all images are created with a green and blueish tint.
<?PHP
$flvmov = new ffmpeg_movie("test.mp4");
$flvframe = $flvmov->getFrame(50);
$flvgd = $flvframe->toGDImage();
imagepng($flvgd, "test.png", 0);…