diff options
author | Glandos <bugs-github@antipoul.fr> | 2023-02-15 23:40:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 23:40:16 +0100 |
commit | 59e7ed1fad8ce97c0216524b182a4a98d814be20 (patch) | |
tree | b37cf652bbf20a51aa79de7c10902c9fe70d4e44 /lib/private | |
parent | 528e66859bdf912b422efaa5e0ba833eef939735 (diff) | |
download | nextcloud-server-59e7ed1fad8ce97c0216524b182a4a98d814be20.tar.gz nextcloud-server-59e7ed1fad8ce97c0216524b182a4a98d814be20.zip |
fix indent
Signed-off-by: Glandos <bugs-github@antipoul.fr>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Preview/Movie.php | 16 |
1 files changed, 8 insertions, 8 deletions
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); |