• 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 Scrubbing not working for transcoded HEVC

     
    • 0 Vote(s) - 0 Average

    Scrubbing not working for transcoded HEVC

    Video playback is stuck after skipping to a specific time during playback
    nyanmisaka
    Offline

    Team Member

    Posts: 263
    Threads: 0
    Joined: 2023 Jun
    Reputation: 11
    #9
    2023-10-10, 06:01 PM (This post was last modified: 2023-10-10, 06:07 PM by nyanmisaka. Edited 2 times in total.)
    This is a limitation of FFmpeg. When seeking, some HW decoders (e.g. all hwaccel and QSV decoder) are unable to take advantage of the hevc_mp4toannexb bitstream filter to handle such unusual bitstream.

    hevc_mp4toannexb means "Convert an HEVC/H.265 bitstream from length prefixed mode to start code prefixed mode"

    As a workaround, you can use this command to pre-remux you video to fix the issue. This is not transcoding, so it usually completes quickly.

    Code:
    ffmpeg -y -strict -2 -i HEVC_INPUT.mp4 -map 0:v? -map 0:a? -map 0:s? -dn -map_chapters -1 -c:v copy -bsf:v hevc_mp4toannexb -c:a copy -c:s mov_text HEVC_OUTPUT.mp4

    I don't want to integrate it in Jellyfin because it will be very slow for long videos, basically depending on the speed of your hard drive. This results in long lead times before transcoding.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-03, 08:24 PM
    RE: Scrubbing not working for transcoded HEVC - by TheDreadPirate - 2023-10-03, 08:30 PM
    RE: Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-04, 03:49 PM
    RE: Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-07, 01:32 PM
    RE: Scrubbing not working for transcoded HEVC - by TheDreadPirate - 2023-10-07, 05:14 PM
    RE: Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-08, 02:31 PM
    RE: Scrubbing not working for transcoded HEVC - by toytown - 2023-10-08, 03:02 PM
    RE: Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-09, 04:52 PM
    RE: Scrubbing not working for transcoded HEVC - by nyanmisaka - 2023-10-10, 06:01 PM
    RE: Scrubbing not working for transcoded HEVC - by Cyboc - 2023-10-11, 03:58 PM

    • 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