]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
avconv required -f image2 not -f mjpeg at least on my server
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 25 Feb 2015 00:41:34 +0000 (01:41 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 25 Feb 2015 00:44:00 +0000 (01:44 +0100)
plugins/VideoThumbnails/VideoThumbnailsPlugin.php

index 3cdf07478e662f3ea2026a08feeddbd9aac8eb7c..2bbc06d7384b07529701f43a04de09a55647d164 100644 (file)
@@ -58,7 +58,7 @@ class VideoThumbnailsPlugin extends Plugin
         // Let's save our frame to a temporary file. If we fail, remove it.
         $imgPath = tempnam(sys_get_temp_dir(), 'socialthumb-');
 
-        $result = exec('avconv -i '.escapeshellarg($file->getPath()).' -vcodec mjpeg -vframes 1 -f mjpeg -an '.escapeshellarg($imgPath));
+        $result = exec('avconv -i '.escapeshellarg($file->getPath()).' -vcodec mjpeg -vframes 1 -f image2 -an '.escapeshellarg($imgPath));
 
         if (!getimagesize($imgPath)) {
             common_debug('exec of "avconv" produced a bad/nonexisting image it seems');