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;
|
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
$isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions')));
|
2013-09-05 11:53:35 +04:00
|
|
|
$whichAVCONV = shell_exec('which avconv');
|
|
|
|
$isAVCONVAvailable = !empty($whichAVCONV);
|
2013-07-30 14:29:12 +04:00
|
|
|
|
2013-09-05 11:53:35 +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
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getMimeType() {
|
2013-04-25 14:51:44 +04:00
|
|
|
return '/video\/.*/';
|
|
|
|
}
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-07-30 14:29:12 +04:00
|
|
|
$absPath = \OC_Helper::tmpFile();
|
|
|
|
$tmpPath = \OC_Helper::tmpFile();
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-06-17 14:27:26 +04:00
|
|
|
$handle = $fileview->fopen($path, 'rb');
|
|
|
|
|
|
|
|
$firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576
|
2013-07-30 14:29:12 +04:00
|
|
|
file_put_contents($absPath, $firstmb);
|
2013-06-17 14:27:26 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
//$cmd = 'ffmpeg -y -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmpPath;
|
2013-09-05 11:53:35 +04:00
|
|
|
$cmd = 'avconv -an -y -ss 1 -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath);
|
2013-06-17 14:27:26 +04:00
|
|
|
|
2013-05-17 17:06:37 +04:00
|
|
|
shell_exec($cmd);
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
$image = new \OC_Image($tmpPath);
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
unlink($absPath);
|
|
|
|
unlink($tmpPath);
|
2013-05-28 13:48:02 +04:00
|
|
|
|
2013-06-11 12:56:16 +04:00
|
|
|
return $image->valid() ? $image : false;
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|
|
|
|
}
|
2013-05-28 13:48:02 +04:00
|
|
|
|
2013-07-29 16:46:20 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\Movie');
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|