2013-04-25 14:51:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-04-25 14:51:44 +04:00
|
|
|
*/
|
2013-05-29 14:33:24 +04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
class Movie extends Provider {
|
|
|
|
public static $avconvBinary;
|
|
|
|
public static $ffmpegBinary;
|
2013-04-25 14:51:44 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function getMimeType() {
|
|
|
|
return '/video\/.*/';
|
|
|
|
}
|
2013-10-15 02:15:45 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
|
|
|
// TODO: use proc_open() and stream the source file ?
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
$fileInfo = $fileview->getFileInfo($path);
|
|
|
|
$useFileDirectly = (!$fileInfo->isEncrypted() && !$fileInfo->isMounted());
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
if ($useFileDirectly) {
|
|
|
|
$absPath = $fileview->getLocalFile($path);
|
|
|
|
} else {
|
2015-12-18 13:25:33 +03:00
|
|
|
$absPath = \OC::$server->getTempManager()->getTemporaryFile();
|
2014-06-11 00:08:12 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
$handle = $fileview->fopen($path, 'rb');
|
2014-06-11 00:08:12 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
// we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB.
|
|
|
|
// in some cases 1MB was no enough to generate thumbnail
|
|
|
|
$firstmb = stream_get_contents($handle, 5242880);
|
|
|
|
file_put_contents($absPath, $firstmb);
|
|
|
|
}
|
2013-06-17 14:27:26 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
$result = $this->generateThumbNail($maxX, $maxY, $absPath, 5);
|
|
|
|
if ($result === false) {
|
|
|
|
$result = $this->generateThumbNail($maxX, $maxY, $absPath, 1);
|
|
|
|
if ($result === false) {
|
|
|
|
$result = $this->generateThumbNail($maxX, $maxY, $absPath, 0);
|
|
|
|
}
|
|
|
|
}
|
2014-04-16 19:16:03 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
if (!$useFileDirectly) {
|
|
|
|
unlink($absPath);
|
|
|
|
}
|
2014-04-16 19:16:03 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
return $result;
|
|
|
|
}
|
2014-04-16 19:16:03 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
/**
|
|
|
|
* @param int $maxX
|
|
|
|
* @param int $maxY
|
|
|
|
* @param string $absPath
|
|
|
|
* @param int $second
|
2015-03-13 12:10:11 +03:00
|
|
|
* @return bool|\OCP\IImage
|
2014-11-28 11:16:35 +03:00
|
|
|
*/
|
|
|
|
private function generateThumbNail($maxX, $maxY, $absPath, $second) {
|
2015-12-18 13:25:33 +03:00
|
|
|
$tmpPath = \OC::$server->getTempManager()->getTemporaryFile();
|
2014-04-16 19:16:03 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
if (self::$avconvBinary) {
|
2016-02-22 11:40:46 +03:00
|
|
|
$cmd = self::$avconvBinary . ' -y -ss ' . escapeshellarg($second) .
|
2014-11-28 11:16:35 +03:00
|
|
|
' -i ' . escapeshellarg($absPath) .
|
2016-02-22 11:40:46 +03:00
|
|
|
' -an -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) .
|
2014-11-28 11:16:35 +03:00
|
|
|
' > /dev/null 2>&1';
|
|
|
|
} else {
|
|
|
|
$cmd = self::$ffmpegBinary . ' -y -ss ' . escapeshellarg($second) .
|
|
|
|
' -i ' . escapeshellarg($absPath) .
|
|
|
|
' -f mjpeg -vframes 1' .
|
|
|
|
' ' . escapeshellarg($tmpPath) .
|
|
|
|
' > /dev/null 2>&1';
|
|
|
|
}
|
2013-06-17 14:27:26 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
exec($cmd, $output, $returnCode);
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
if ($returnCode === 0) {
|
|
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromFile($tmpPath);
|
|
|
|
unlink($tmpPath);
|
2015-06-06 17:21:36 +03:00
|
|
|
if ($image->valid()) {
|
|
|
|
$image->scaleDownToFit($maxX, $maxY);
|
|
|
|
|
|
|
|
return $image;
|
|
|
|
}
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|
2014-11-28 11:16:35 +03:00
|
|
|
unlink($tmpPath);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|