![]() |
Problem with External Subtitles Returning 404 Error from Jellyfin API - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Problem with External Subtitles Returning 404 Error from Jellyfin API (/t-problem-with-external-subtitles-returning-404-error-from-jellyfin-api) |
Problem with External Subtitles Returning 404 Error from Jellyfin API - Masch571 - 2025-04-25 I'm currently working on a video player that fetches and displays subtitles from a Jellyfin server using its API. Fetching item details and detecting available subtitles works correctly. I can see the subtitles listed (both internal and external). However, when I try to load external subtitles (for example .srt files), my player tries to access the following URL: /Videos/{ItemId}/Subtitles/{SubtitleIndex}/Stream?api_key=...&format=vtt and I immediately get a 404 Not Found error. Even when I retry with format=srt, the 404 persists. Important details:
Maybe I need to use /Items/{ItemId}/Subtitles/{SubtitleIndex}/Download instead of /Videos/{ItemId}/Subtitles/{SubtitleIndex}/Stream? Questions:
|