nextcloud/lib/private/preview/movies.php

52 lines
1.5 KiB
PHP
Raw Normal View History

2013-04-25 14:51:44 +04:00
<?php
/**
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
2013-05-17 14:00:32 +04:00
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
2013-04-25 14:51:44 +04:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-05-29 14:33:24 +04:00
namespace OC\Preview;
// movie preview is currently not supported on Windows
if (!\OC_Util::runningOnWindows()) {
$isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions')));
2013-10-17 16:31:07 +04:00
$whichAVCONV = ($isShellExecEnabled ? shell_exec('which avconv') : '');
$isAVCONVAvailable = !empty($whichAVCONV);
2013-07-30 14:29:12 +04:00
if($isShellExecEnabled && $isAVCONVAvailable) {
2013-05-29 15:11:43 +04:00
class Movie extends Provider {
2013-04-25 14:51:44 +04:00
public function getMimeType() {
return '/video\/.*/';
}
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
$absPath = \OC_Helper::tmpFile();
$tmpPath = \OC_Helper::tmpFile();
2013-05-17 21:08:16 +04:00
$handle = $fileview->fopen($path, 'rb');
2013-05-17 21:08:16 +04:00
$firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576
file_put_contents($absPath, $firstmb);
//$cmd = 'ffmpeg -y -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmpPath;
$cmd = 'avconv -an -y -ss 1 -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath);
shell_exec($cmd);
2013-05-17 21:08:16 +04:00
$image = new \OC_Image($tmpPath);
2013-05-17 21:08:16 +04:00
unlink($absPath);
unlink($tmpPath);
return $image->valid() ? $image : false;
}
2013-04-25 14:51:44 +04:00
}
\OC\Preview::registerProvider('OC\Preview\Movie');
2013-04-25 14:51:44 +04:00
}
}