diff options
Diffstat (limited to 'server/helpers/ffmpeg/ffprobe-utils.ts')
-rw-r--r-- | server/helpers/ffmpeg/ffprobe-utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/ffmpeg/ffprobe-utils.ts b/server/helpers/ffmpeg/ffprobe-utils.ts index c45f9ec99..9746c2046 100644 --- a/server/helpers/ffmpeg/ffprobe-utils.ts +++ b/server/helpers/ffmpeg/ffprobe-utils.ts | |||
@@ -163,7 +163,7 @@ async function canDoQuickAudioTranscode (path: string, probe?: FfprobeData): Pro | |||
163 | 163 | ||
164 | const channelLayout = parsedAudio.audioStream['channel_layout'] | 164 | const channelLayout = parsedAudio.audioStream['channel_layout'] |
165 | // Causes playback issues with Chrome | 165 | // Causes playback issues with Chrome |
166 | if (!channelLayout || channelLayout === 'unknown') return false | 166 | if (!channelLayout || channelLayout === 'unknown' || channelLayout === 'quad') return false |
167 | 167 | ||
168 | return true | 168 | return true |
169 | } | 169 | } |