• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting SOLVED: Roku app mysteriously skipping to next episode

     
    • 0 Vote(s) - 0 Average

    SOLVED: Roku app mysteriously skipping to next episode

    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #1
    2024-01-10, 10:27 PM
    When I try to watch certain TV episodes, at a certain point (about 1m30s in, in the cases I've seen), it skips ahead to the next episode. I am experiencing this issue on the Roku app only (on multiple devices, with app version 2.0.1; the issue also occurred with 2.0.0, but I do not recall experiencing it prior to that). The issue does not occur with the Windows client (version 1.9.1). The server is version 10.8.10, installed on Ubuntu through the official repositories.


    Relevant section of the logs: https://pastebin.com/BdWsNFq2

    MediaInfo of an affected file: https://pastebin.com/EvP9NFbP

    The skip seems to happen at about where the subtitles start, but the issue also occurs when the sub track is turned off, so that may be a coincidence. Just in case, I extracted the SRT and took a look, but there doesn't seem to be anything wrong with it.

    The first few lines of the sub track, just in case: https://pastebin.com/4uWVP1Z4
    Go to solution
    1hitsong
    Offline

    Moderator

    Posts: 95
    Threads: 11
    Joined: 2023 Jun
    Reputation: 3
    #2
    2024-01-10, 11:07 PM
    Do you have the custom subtitle setting enabled?
    🤘 Enjoy

    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #3
    2024-01-10, 11:15 PM
    (2024-01-10, 11:07 PM)1hitsong Wrote: Do you have the custom subtitle setting enabled?

    I do not
    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #4
    2024-01-11, 05:03 PM (This post was last modified: 2024-01-11, 05:04 PM by duckrental. Edited 1 time in total.)
    An update: I've tested a couple episodes from other series with SRT subs, and they do not experience this issue (or if they do, I didn't wait long enough for it to arise - I was only checking whether it was the start of the sub track that caused the issue)
    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #5
    2024-01-13, 08:13 PM
    A further update: I have updated the server to 10.8.13; the problem persists. I have also tried enabling custom subtitles in the Roku client, which does not fix the problem; however, with custom subtitles enabled, the first subtitle line does show up right before the episode skips.

    Logs: https://pastebin.com/AxKqvNsn
    (The playback starting at 15:05 is with custom subtitles off, starting at 15:06 is with them on)
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-01-13, 09:36 PM
    FWIW, since everything is Direct Playing, the behavior you are describing is 100% a client side issue OR some issue with the file. The jellyfin server is just sending the file.

    You can try using ffmpeg to check your files for errors.

    Code:
    /usr/lib/jellyfin-ffmpeg/ffmpeg -v error -i "/media/hdd/Anime/Tenchi Universe/[R2J-DarkDream] Tenchi Universe S01E06.mkv" -f null - 2>/tmp/error.log
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #7
    2024-01-13, 10:49 PM (This post was last modified: 2024-01-13, 11:45 PM by duckrental. Edited 1 time in total.)
    (2024-01-13, 09:36 PM)TheDreadPirate Wrote: FWIW, since everything is Direct Playing, the behavior you are describing is 100% a client side issue OR some issue with the file.  The jellyfin server is just sending the file.

    You can try using ffmpeg to check your files for errors.

    Code:
    /usr/lib/jellyfin-ffmpeg/ffmpeg -v error -i "/media/hdd/Anime/Tenchi Universe/[R2J-DarkDream] Tenchi Universe S01E06.mkv" -f null - 2>/tmp/error.log

    Okay, tried this - the file it produces is empty, so I assume that means no errors in the mkv.

    EDIT - Accidentally marked the wrong post as the solution - it's the next one
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2024-01-13, 11:10 PM
    The other possibility is that the MKVs were not authored properly.  I've seen issues with stuttering due to some issue with frame timestamps or something like that.  I don't fully understand the low level details.

    We can repackage all the streams in your MKV without having to re-encode.

    Code:
    /usr/lib/jellyfin-ffmpeg/ffmpeg +genpts -i "/media/hdd/Anime/Tenchi Universe/[R2J-DarkDream] Tenchi Universe S01E06.mkv" -map 0:v -map 0:a -map 0:s -map_chapters 0 -c:v copy -c:a copy -c:s copy outputFile.mkv

    Replace outputFile.mkv with whatever filename you want (don't overwrite the original).
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    duckrental
    Offline

    Junior Member

    Posts: 30
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #9
    2024-01-13, 11:46 PM
    (2024-01-13, 11:10 PM)TheDreadPirate Wrote: The other possibility is that the MKVs were not authored properly.  I've seen issues with stuttering due to some issue with frame timestamps or something like that.  I don't fully understand the low level details.

    We can repackage all the streams in your MKV without having to re-encode.

    Code:
    /usr/lib/jellyfin-ffmpeg/ffmpeg +genpts -i "/media/hdd/Anime/Tenchi Universe/[R2J-DarkDream] Tenchi Universe S01E06.mkv" -map 0:v -map 0:a -map 0:s -map_chapters 0 -c:v copy -c:a copy -c:s copy outputFile.mkv

    Replace outputFile.mkv with whatever filename you want (don't overwrite the original).

    This seems to have fixed it, though ffmpeg didn't like +genpts so I replaced it with -fflags genpts.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode