mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-29 18:08:49 +00:00
set maxAudioChannels based on surround sound setting
This commit is contained in:
parent
b9efa02727
commit
09607f3a2e
1 changed files with 4 additions and 1 deletions
|
|
@ -289,7 +289,10 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
maxAudioChannels: typeof maxAudioChannels === 'number' ?
|
||||
maxAudioChannels
|
||||
:
|
||||
null,
|
||||
settings.surroundSound ?
|
||||
32
|
||||
:
|
||||
2,
|
||||
streamingServerURL: streamingServer.baseUrl.type === 'Ready' ?
|
||||
casting ?
|
||||
streamingServer.baseUrl.content
|
||||
|
|
|
|||
Loading…
Reference in a new issue