From: Glandos Date: Wed, 15 Feb 2023 22:40:16 +0000 (+0100) Subject: fix indent X-Git-Tag: v27.0.0beta1~385^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=59e7ed1fad8ce97c0216524b182a4a98d814be20;p=nextcloud-server.git fix indent Signed-off-by: Glandos --- diff --git a/lib/private/Preview/Movie.php b/lib/private/Preview/Movie.php index 5b188be68b7..b5842d11dd5 100644 --- a/lib/private/Preview/Movie.php +++ b/lib/private/Preview/Movie.php @@ -125,15 +125,15 @@ class Movie extends ProviderV2 { $binaryType = substr(strrchr($this->binary, '/'), 1); if ($binaryType === 'avconv') { - $cmd = [$this->binary, '-y', '-ss', (string)$second, - '-i', $absPath, - '-an', '-f', 'mjpeg', '-vframes', '1', '-vsync', '1', - $tmpPath]; + $cmd = [$this->binary, '-y', '-ss', (string)$second, + '-i', $absPath, + '-an', '-f', 'mjpeg', '-vframes', '1', '-vsync', '1', + $tmpPath]; } elseif ($binaryType === 'ffmpeg') { - $cmd = [$this->binary, '-y', '-ss', (string)$second, - '-i', $absPath, - '-f', 'mjpeg', '-vframes', '1', - $tmpPath]; + $cmd = [$this->binary, '-y', '-ss', (string)$second, + '-i', $absPath, + '-f', 'mjpeg', '-vframes', '1', + $tmpPath]; } else { // Not supported unlink($tmpPath);