server/lib/preview/movies.php

47 lines
1.4 KiB
PHP
Raw Normal View History

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