From 000f89b99e22246076ec49395cd1468b76ddb798 Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Sun, 2 Nov 2025 11:34:36 +0100 Subject: [PATCH] Tizen: Restrict recently added max-32-streams limit to Tizen < v6.5 v10.11 introduced that limit for Tizen in general, causing all formerly direct-playable media with more than 32 streams to be remuxed - one cause of regression #7231. According to https://github.com/jellyfin/jellyfin-tizen/issues/289#issuecomment-2581270727, Tizen v5 only supports max 32 streams. This limit seems to have been lifted in v6.5, according to https://github.com/jellyfin/jellyfin-web/issues/7231#issuecomment-3474685133. I'm using Tizen v9 and don't have any problems with around 100 streams. --- src/scripts/browserDeviceProfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index 80bf0f33e3..ec919519a4 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -924,7 +924,7 @@ export default function (options) { profile.ContainerProfiles = []; - if (browser.tizen) { + if (browser.tizenVersion < 6.5) { // Tizen doesn't support more than 32 streams in a single file profile.ContainerProfiles.push({ Type: 'Video',