aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Thumbs/Video.php
blob: 1da5003708b2c712944278a38461364e4d2a4f61 (plain) (blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php

namespace Zotlabs\Thumbs;

use Zotlabs\Lib\Config;

class Video {

	function MatchDefault($type) {
		return(($type === 'video') ? true : false );
	}

	function Thumb($attach,$preview_style,$height = 300, $width = 300) {

		$file = dbunescbin($attach['content']);
		if (!$file) {
			return;
		}

		$photo = false;

		$t = explode('/',$attach['filetype']);
		if($t[1])
			$extension = '.' . $t[1];
		else
			return;

		$tmpfile = $file . $extension;
		$outfile = $file . '.jpg';

		$istream = fopen($file,'rb');
		$ostream = fopen($tmpfile,'wb');
		if($istream && $ostream) {
			pipe_streams($istream,$ostream);
			fclose($istream);
			fclose($ostream);
		}

		/*
		 * Note: imagick convert may try to call 'ffmpeg' (or other conversion utilities) under
		 * the covers for this particular operation. If this is not installed or not in the path
		 * for the web server user, errors may be reported in the web server logs.
		 */


		$ffmpeg = trim(shell_exec('which ffmpeg'));
		if($ffmpeg) {
			logger('ffmpeg not found in path. Video thumbnails may fail.');
		}

		$imagick_path = Config::Get('system','imagick_convert_path');
		if($imagick_path && @file_exists($imagick_path)) {
			$cmd = $imagick_path . ' ' . escapeshellarg(PROJECT_BASE . '/' . $tmpfile . '[0]') . ' -resize ' . $width . 'x' . $height . ' ' . escapeshellarg(PROJECT_BASE . '/' . $outfile);
			//  logger('imagick thumbnail command: ' . $cmd);

			/** @scrutinizer ignore-unhandled */
			@exec($cmd);

			if(! file_exists($outfile)) {
				logger('imagick scale failed.');
			}
			else {
				@rename($outfile,$file . '.thumb');
			}
		}

		@unlink($tmpfile);
	}
}