mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-19 18:02:13 +00:00
use 2 channel audio on chrome unless other is specified
This commit is contained in:
parent
be7a653479
commit
e1e69d98e6
1 changed files with 7 additions and 1 deletions
|
|
@ -230,7 +230,13 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
:
|
||||
0,
|
||||
forceTranscoding: forceTranscoding || casting,
|
||||
audioChannels,
|
||||
audioChannels: typeof audioChannels === 'number' ?
|
||||
audioChannels
|
||||
:
|
||||
window.chrome ?
|
||||
2
|
||||
:
|
||||
null,
|
||||
streamingServerURL: streamingServer.baseUrl.type === 'Ready' ?
|
||||
casting ?
|
||||
streamingServer.baseUrl.content
|
||||
|
|
|
|||
Loading…
Reference in a new issue