Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Secondary subtitle not working on my Samsung TV #300

Closed
Xcellion opened this issue Oct 25, 2024 · 5 comments
Closed

Secondary subtitle not working on my Samsung TV #300

Xcellion opened this issue Oct 25, 2024 · 5 comments
Labels
bug Something isn't working

Comments

@Xcellion
Copy link

Hello,

I installed the official Jellyfin app using the docker method (https://github.com/Georift/install-jellyfin-tizen)

And I am able to stream movies perfectly. However, I noticed that the secondary subtitle function doesn't work. The option to select a secondary sub is there, but only one language ever appears.

When I select a second language, it just overwrites the main language.

Can anyone help?

@dmitrylyzo
Copy link
Collaborator

Tizen app uses HTMLVideoElement. On Tizen 5 (tested with emulator) it doesn't seem to support simultaneous display of multiple text tracks. It disables the currently displayed track when enabling another one.
It does work on Tizen 3 (tested with emulator) and Tizen 4 (tested on real TV).

One option is to use a custom element for subtitles, as on webOS. It may also be configurable: jellyfin/jellyfin-web#5737

@dmitrylyzo dmitrylyzo added the bug Something isn't working label Oct 25, 2024
@Xcellion
Copy link
Author

One option is to use a custom element for subtitles, as on webOS. It may also be configurable: jellyfin/jellyfin-web#5737

Is this something I can enable? How do I configure it?

@dmitrylyzo
Copy link
Collaborator

Is this something I can enable? How do I configure it?

At the moment, only edit mentioned code as:

        if (browser.tizenVersion >= 5 || browser.web0s) {
            return true;
        }

and rebuild the app.

@Xcellion
Copy link
Author

I just did that and rebuilt the app, but it doesn't seem to be working unfortunately. I checked and my TV is running Tizen 6. Not sure if that makes any difference.

I also added a line above return true; to alert("test message") and have confirmed that i built the app correctly and have pushed it to my TV

@Xcellion
Copy link
Author

Xcellion commented Oct 25, 2024

Nevermind I spoke too soon. I apparently edited the wrong line in the code. I edited the line you suggested and it works now:

if (browser.tizenVersion >= 5 || browser.web0s) <- this line

Thank you so much!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants