mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-09-03 03:50:02 +03:00
Merge pull request #7966 from nyanmisaka/disable-fmp4-in-ff149
Disable known broken fMP4 HLS container on Firefox 149
This commit is contained in:
@@ -839,6 +839,12 @@ export default function (options) {
|
||||
enableFmp4Hls = false;
|
||||
}
|
||||
|
||||
// fMP4 in Firefox 149 is largely broken due to bad moof::traf::tfdt handling
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=2026875
|
||||
if (browser.firefox && browser.versionMajor == 149) {
|
||||
enableFmp4Hls = false;
|
||||
}
|
||||
|
||||
if (canPlayHls() && browser.enableHlsAudio !== false) {
|
||||
profile.TranscodingProfiles.push({
|
||||
Container: enableFmp4Hls ? 'mp4' : 'ts',
|
||||
|
||||
Reference in New Issue
Block a user