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-11-08 11:09:58 +00:00
|
|
|
function findBinaryPath($program) {
|
|
|
|
exec('which ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode);
|
|
|
|
if ($returnCode === 0 && count($output) > 0) {
|
|
|
|
return escapeshellcmd($output[0]);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
// movie preview is currently not supported on Windows
|
|
|
|
if (!\OC_Util::runningOnWindows()) {
|
2013-11-08 11:09:58 +00:00
|
|
|
$isExecEnabled = !in_array('exec', explode(', ', ini_get('disable_functions')));
|
2013-11-10 10:46:46 +00:00
|
|
|
$ffmpegBinary = null;
|
|
|
|
$avconvBinary = null;
|
2013-11-08 11:09:58 +00:00
|
|
|
|
|
|
|
if ($isExecEnabled) {
|
|
|
|
$avconvBinary = findBinaryPath('avconv');
|
|
|
|
if (!$avconvBinary) {
|
|
|
|
$ffmpegBinary = findBinaryPath('ffmpeg');
|
|
|
|
}
|
|
|
|
}
|
2013-07-30 10:29:12 +00:00
|
|
|
|
2013-11-08 11:09:58 +00:00
|
|
|
if($isExecEnabled && ( $avconvBinary || $ffmpegBinary )) {
|
2013-05-29 11:11:43 +00:00
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
class Movie extends Provider {
|
2013-11-08 11:09:58 +00:00
|
|
|
public static $avconvBinary;
|
|
|
|
public static $ffmpegBinary;
|
2013-04-25 10:51:44 +00:00
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
public function getMimeType() {
|
|
|
|
return '/video\/.*/';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-11-08 11:09:58 +00:00
|
|
|
// TODO: use proc_open() and stream the source file ?
|
2013-10-14 22:15:45 +00:00
|
|
|
$absPath = \OC_Helper::tmpFile();
|
|
|
|
$tmpPath = \OC_Helper::tmpFile();
|
2013-05-17 17:08:16 +00:00
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
$handle = $fileview->fopen($path, 'rb');
|
2013-05-17 17:08:16 +00:00
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
$firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576
|
|
|
|
file_put_contents($absPath, $firstmb);
|
2013-06-17 10:27:26 +00:00
|
|
|
|
2013-11-08 11:09:58 +00:00
|
|
|
if (self::$avconvBinary) {
|
2013-11-15 00:46:51 +00:00
|
|
|
$cmd = self::$avconvBinary . ' -an -y -ss 5'.
|
2013-11-08 11:27:53 +00:00
|
|
|
' -i ' . escapeshellarg($absPath) .
|
2013-11-22 11:20:06 +00:00
|
|
|
' -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) .
|
2013-11-08 11:09:58 +00:00
|
|
|
' > /dev/null 2>&1';
|
|
|
|
}
|
|
|
|
else {
|
2013-11-15 00:46:51 +00:00
|
|
|
$cmd = self::$ffmpegBinary . ' -y -ss 5' .
|
2013-11-08 11:09:58 +00:00
|
|
|
' -i ' . escapeshellarg($absPath) .
|
|
|
|
' -f mjpeg -vframes 1' .
|
|
|
|
' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) .
|
2013-11-11 14:41:03 +00:00
|
|
|
' ' . escapeshellarg($tmpPath) .
|
2013-11-08 11:09:58 +00:00
|
|
|
' > /dev/null 2>&1';
|
|
|
|
}
|
2013-06-17 10:27:26 +00:00
|
|
|
|
2013-11-08 11:09:58 +00:00
|
|
|
exec($cmd, $output, $returnCode);
|
2013-05-17 17:08:16 +00:00
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
unlink($absPath);
|
2013-05-28 09:48:02 +00:00
|
|
|
|
2013-11-08 11:09:58 +00:00
|
|
|
if ($returnCode === 0) {
|
2013-11-14 19:57:29 +00:00
|
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromFile($tmpPath);
|
2013-11-08 11:09:58 +00:00
|
|
|
unlink($tmpPath);
|
|
|
|
return $image->valid() ? $image : false;
|
|
|
|
}
|
|
|
|
return false;
|
2013-10-14 22:15:45 +00:00
|
|
|
}
|
2013-04-25 10:51:44 +00:00
|
|
|
}
|
2013-10-14 22:15:45 +00:00
|
|
|
|
2013-11-08 11:09:58 +00:00
|
|
|
// a bit hacky but didn't want to use subclasses
|
|
|
|
Movie::$avconvBinary = $avconvBinary;
|
|
|
|
Movie::$ffmpegBinary = $ffmpegBinary;
|
|
|
|
|
2013-10-14 22:15:45 +00:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\Movie');
|
2013-04-25 10:51:44 +00:00
|
|
|
}
|
2013-10-14 22:15:45 +00:00
|
|
|
}
|
2013-05-28 09:48:02 +00:00
|
|
|
|