mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #8137] Chapter Image settings(back-end): #11632
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/jellyfin/jellyfin/pull/8137
State: closed
Merged: Yes
Chapter Image (Dummy Chapters) can be configured from the front-end by the user.
There are 3 settings:
The extraction duration (interval) now can be set in seconds. The minimal value being 1 second. The default value is "300" (5 minutes).
The count is the image file limit / media file, just in case there is bad metadata. Default value is "100".
The resolution sets the extracted image size. It ranges from 144p to 2160p (16:9 aspect ratio). Default value: "Match Source".
Screenshot of the Dashboard > General settings page:

Screenshot of the resolution dropdown:
I tried to keep the changes to minimal. I just used the server configuration that was already implemented by adding 3 more properties to its model class.
I'm a beginner coder. I welcome any improvement suggestions.
The issues that would resolve is #1346 (already closed but not implemented).
The feature request is here.
This is the back-end implementation. The front-end implementation is here.