mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
edge does not support h264 high10 directstream
This commit is contained in:
parent
ae325bd747
commit
50b96b0afb
1 changed files with 5 additions and 1 deletions
|
@ -180,6 +180,10 @@ define(['browser'], function (browser) {
|
|||
|
||||
return true;
|
||||
}
|
||||
|
||||
if (browser.edgeUwp) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -786,7 +790,7 @@ define(['browser'], function (browser) {
|
|||
videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '')) {
|
||||
|
||||
// These tests are passing in safari, but playback is failing
|
||||
if (!browser.safari && !browser.iOS && !browser.web0s) {
|
||||
if (!browser.safari && !browser.iOS && !browser.web0s && !browser.edge) {
|
||||
h264Profiles += '|high 10';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue