@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $synchronous = $audioOptions['synchronous']; |
406 | 406 | } |
407 | 407 | if (!$synchronous) { |
408 | - $ffmpegCmd .=' 1> '.$progressFile.' 2>&1 & echo $!'; |
|
408 | + $ffmpegCmd .= ' 1> '.$progressFile.' 2>&1 & echo $!'; |
|
409 | 409 | // Make sure there isn't a lockfile for this audio file already |
410 | 410 | $lockFile = sys_get_temp_dir().DIRECTORY_SEPARATOR.$destAudioFile.'.lock'; |
411 | 411 | $oldPid = @file_get_contents($lockFile); |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | |
431 | 431 | if ($synchronous) { |
432 | 432 | Craft::info($ffmpegCmd, __METHOD__); |
433 | - $url = $settings['transcoderUrls']['audio'] . $subfolder ?? $settings['transcoderUrls']['default']; |
|
433 | + $url = $settings['transcoderUrls']['audio'].$subfolder ?? $settings['transcoderUrls']['default']; |
|
434 | 434 | $result = Craft::parseEnv($url).$destAudioFile; |
435 | 435 | } else { |
436 | 436 | Craft::info($ffmpegCmd."\nffmpeg PID: ".$pid, __METHOD__); |
@@ -508,7 +508,7 @@ discard block |
||
508 | 508 | && (strpos($summaryResult['videoFrameRate'], '/') !== false) |
509 | 509 | ) { |
510 | 510 | $parts = explode('/', $summaryResult['videoFrameRate']); |
511 | - $summaryResult['videoFrameRate'] = (float)$parts[0] / (float)$parts[1]; |
|
511 | + $summaryResult['videoFrameRate'] = (float) $parts[0] / (float) $parts[1]; |
|
512 | 512 | } |
513 | 513 | $result = $summaryResult; |
514 | 514 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $filePath = parse_url($url, PHP_URL_PATH); |
69 | 69 | // Remove any relative paths |
70 | 70 | if (!PathHelper::ensurePathIsContained($filePath)) { |
71 | - throw new BadRequestHttpException('Invalid resource path: ' . $filePath); |
|
71 | + throw new BadRequestHttpException('Invalid resource path: '.$filePath); |
|
72 | 72 | } |
73 | 73 | // Only work for `allowedFileExtensions` file extensions |
74 | 74 | $extension = strtolower(pathinfo($filePath, PATHINFO_EXTENSION)); |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | |
113 | 113 | // rawDuration is in 00:00:00.00 format. This converts it to seconds. |
114 | 114 | $ar = array_reverse(explode(':', $rawDuration)); |
115 | - $duration = (float)$ar[0]; |
|
115 | + $duration = (float) $ar[0]; |
|
116 | 116 | if (!empty($ar[1])) { |
117 | - $duration += (int)$ar[1] * 60; |
|
117 | + $duration += (int) $ar[1] * 60; |
|
118 | 118 | } |
119 | 119 | if (!empty($ar[2])) { |
120 | - $duration += (int)$ar[2] * 60 * 60; |
|
120 | + $duration += (int) $ar[2] * 60 * 60; |
|
121 | 121 | } |
122 | 122 | } else { |
123 | 123 | $duration = 'unknown'; // with GIF as input, duration is unknown |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | |
135 | 135 | //rawTime is in 00:00:00.00 format. This converts it to seconds. |
136 | 136 | $ar = array_reverse(explode(':', $rawTime)); |
137 | - $time = (float)$ar[0]; |
|
137 | + $time = (float) $ar[0]; |
|
138 | 138 | if (!empty($ar[1])) { |
139 | - $time += (int)$ar[1] * 60; |
|
139 | + $time += (int) $ar[1] * 60; |
|
140 | 140 | } |
141 | 141 | if (!empty($ar[2])) { |
142 | - $time += (int)$ar[2] * 60 * 60; |
|
142 | + $time += (int) $ar[2] * 60 * 60; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | //calculate the progress |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | Event::on( |
150 | 150 | CraftVariable::class, |
151 | 151 | CraftVariable::EVENT_INIT, |
152 | - function (Event $event) { |
|
152 | + function(Event $event) { |
|
153 | 153 | /** @var CraftVariable $variable */ |
154 | 154 | $variable = $event->sender; |
155 | 155 | $variable->set('transcoder', [ |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | Event::on( |
171 | 171 | Assets::class, |
172 | 172 | Assets::EVENT_GET_THUMB_PATH, |
173 | - function (AssetThumbEvent $event) { |
|
173 | + function(AssetThumbEvent $event) { |
|
174 | 174 | Craft::debug( |
175 | 175 | 'Assets::EVENT_GET_THUMB_PATH', |
176 | 176 | __METHOD__ |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | Event::on( |
191 | 191 | ClearCaches::class, |
192 | 192 | ClearCaches::EVENT_REGISTER_CACHE_OPTIONS, |
193 | - function (RegisterCacheOptionsEvent $event) { |
|
193 | + function(RegisterCacheOptionsEvent $event) { |
|
194 | 194 | $event->options[] = [ |
195 | 195 | 'key' => 'transcoder', |
196 | 196 | 'label' => Craft::t('transcoder', 'Transcoder caches'), |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | Event::on( |
204 | 204 | Plugins::class, |
205 | 205 | Plugins::EVENT_AFTER_INSTALL_PLUGIN, |
206 | - function (PluginEvent $event) { |
|
206 | + function(PluginEvent $event) { |
|
207 | 207 | if ($event->plugin === $this) { |
208 | 208 | $request = Craft::$app->getRequest(); |
209 | 209 | if ($request->isCpRequest) { |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | Event::on( |
229 | 229 | UrlManager::class, |
230 | 230 | UrlManager::EVENT_REGISTER_SITE_URL_RULES, |
231 | - function (RegisterUrlRulesEvent $event) { |
|
231 | + function(RegisterUrlRulesEvent $event) { |
|
232 | 232 | Craft::debug( |
233 | 233 | 'UrlManager::EVENT_REGISTER_SITE_URL_RULES', |
234 | 234 | __METHOD__ |