Merge pull request #7335 from gnattu/blacklist-firefox-mkv-support
This commit is contained in:
@@ -205,6 +205,13 @@ function testCanPlayMkv(videoTestElement) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (browser.firefox) {
|
||||
// As of Firefox 145, its mkv support is buggy and causes playback issues because it would force preloading the
|
||||
// whole mkv file before playback starts, which is extremely undesirable for streaming.
|
||||
// See https://github.com/jellyfin/jellyfin/issues/15521
|
||||
return false;
|
||||
}
|
||||
|
||||
if (videoTestElement.canPlayType('video/x-matroska').replace(/no/, '')
|
||||
|| videoTestElement.canPlayType('video/mkv').replace(/no/, '')) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user