nextcloud/lib/preview/movies.php

31 lines
902 B
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-10 01:59:16 +04:00
if(!is_null(shell_exec('ffmpeg -version'))){
2013-04-25 14:51:44 +04:00
class OC_Preview_Movie extends OC_Preview_Provider{
public function getMimeType(){
return '/video\/.*/';
}
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) {
2013-05-17 17:06:37 +04:00
$abspath = $fileview->getLocalfile($path);
2013-05-17 21:08:16 +04:00
2013-05-17 17:06:37 +04:00
$tmppath = OC_Helper::tmpFile();
2013-05-17 21:08:16 +04:00
2013-05-17 17:06:37 +04:00
$cmd = 'ffmpeg -y -i ' . escapeshellarg($abspath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmppath;
shell_exec($cmd);
2013-05-17 21:08:16 +04:00
2013-05-17 17:06:37 +04:00
$image = new \OC_Image($tmppath);
if (!$image->valid()) return false;
2013-05-17 21:08:16 +04:00
2013-05-17 17:06:37 +04:00
return $image;
2013-04-25 14:51:44 +04:00
}
}
OC_Preview::registerProvider('OC_Preview_Movie');
}