Jellyfin Forum
White bars on the playback line in Video player of browser - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: White bars on the playback line in Video player of browser (/t-white-bars-on-the-playback-line-in-video-player-of-browser)



White bars on the playback line in Video player of browser - deep_space - 2024-07-29

What are these white bars on the playback line(or video timeline)? This is being played on browser
[Image: image.png]


RE: White bars on the playback line in Video player of browser - Efficient_Good_5784 - 2024-07-29

Those are chapter markers. They are placed wherever a chapter is indicated by your file's chapter file.
If you look at the very beginning of your screenshot, you can see they turn blue by default when you go past a chapter (watched).

If you want to hide them, add this to your custom CSS:

Code:
.sliderMarker.unwatched,
.sliderMarker.watched {
  display: none;
}



RE: White bars on the playback line in Video player of browser - deep_space - 2024-07-29

(2024-07-29, 02:54 AM)Efficient_Good_5784 Wrote: Those are chapter markers. They are placed wherever a chapter is indicated by your file's chapter file.
If you look at the very beginning of your screenshot, you can see they turn blue by default when you go past a chapter (watched).

If you want to hide them, add this to your custom CSS:

Code:
.sliderMarker.unwatched,
.sliderMarker.watched {
  display: none;
}

Oh thanks :)