aboutsummaryrefslogtreecommitdiffstats
path: root/lib/preview/movies.php
blob: 14ac97b552d1a1f7318ef80135a304a98f6b83b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
 * Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
 * Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
namespace OC\Preview;

if(!is_null(shell_exec('ffmpeg -version'))){
	class Movie extends Provider{

		public function getMimeType(){
			return '/video\/.*/';
		}

		public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) {
			//get fileinfo
			$fileinfo = $fileview->getFileInfo($path);

			$abspath = $fileview->toTmpFile($path);
			$tmppath = \OC_Helper::tmpFile();

			//$cmd = 'ffmpeg -y  -i ' . escapeshellarg($abspath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmppath;
			$cmd = 'ffmpeg -y  -i ' . escapeshellarg($abspath) . ' -f mjpeg -vframes 1 -ss 1 ' . $tmppath;
			shell_exec($cmd);

			unlink($abspath);

			$image = new \OC_Image($tmppath);
			if (!$image->valid()) return false;

			unlink($tmppath);

			return $image;
		}
	}

	\OC\Preview::registerProvider('OC\Preview\Movie');
}