Use the -y parameter for ffmpeg/avconv to be non-interactive

This commit is contained in:
Mikael Nordfeldth 2016-02-07 01:59:21 +01:00
parent 6bec22ea4e
commit 58e852f7f7
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class VideoThumbnailsPlugin extends Plugin
common_log(LOG_ERR, 'Neither ffmpeg nor avconv was found in your PATH. Cannot create video thumbnail.');
return true;
}
$result = exec($cmd.' -i '.escapeshellarg($file->getPath()).' -vcodec mjpeg -vframes 1 -f image2 -an '.escapeshellarg($tmp_imgPath));
$result = exec($cmd.' -y -i '.escapeshellarg($file->getPath()).' -vcodec mjpeg -vframes 1 -f image2 -an '.escapeshellarg($tmp_imgPath));
if (!getimagesize($tmp_imgPath)) {
common_debug('exec of "avconv" produced a bad/nonexisting image it seems');