]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix indent
authorGlandos <bugs-github@antipoul.fr>
Wed, 15 Feb 2023 22:40:16 +0000 (23:40 +0100)
committerGitHub <noreply@github.com>
Wed, 15 Feb 2023 22:40:16 +0000 (23:40 +0100)
Signed-off-by: Glandos <bugs-github@antipoul.fr>
lib/private/Preview/Movie.php

index 5b188be68b73c0372a0a2f201f1d010d95ca97aa..b5842d11dd51876717c3a4bd5f4a2f1bd69ce654 100644 (file)
@@ -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);