-
-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate screenshot images for markers #1604
Conversation
I don't really like the idea of generating artifacts for use exclusively outside of stash. This should probably be implemented as a separate plugin or script. |
Hmm, unsure if / how this could be implemented as a plugin. Especially since it would need an API change (additional What I didn't investigate further, but might be worthwhile, is that the wall has the (static) image option which at the moment shows the video but doesn't auto play. Obviously this could use the static image as well. But unsure whether downloading a full size image would be faster / better than downloading a part of the preview video and showing the first frame as static image. Edit: |
25d2e88
to
c0be481
Compare
c0be481
to
3b42e04
Compare
@WithoutPants any update on this? Is there a possibility for you to reconsider this? :) As written before, it's impossible to do this in a plugin. And I'm open to making this a separate task so users can choose to generate these images instead of always generating them as part of the video preview generator task. |
We do indeed have a static image option. There is a pending issue #588 related to adding the webp generation for markers. If you can add that option and a static image option, then we can have the marker wall view show the static image if it is selected in the interface options (I don't think it's a particularly useful option, but it is there). |
So splitting the existing task in two (video at top level, webp as sub-option, just like scenes has), and adding the static image task as sub option as well. 👍 |
In some scenarios it might not be possible to use the preview video or image of markers, i.e. when only static images are supported like in Kodi. So generate a static screenshot as well.
3b42e04
to
547a638
Compare
Updated. Generating markers now has two subitems for animated images and static images. When wall is set to static image the static image will be used. I made the decision to not generate the webp previews by default because they're also not generated for scene previews by default. But this obviously "breaks" backwards compatibility as previously they were always generated. |
In some scenarios it might not be possible to use the preview video or
image of markers, i.e. when only static images are supported like in
Kodi. So generate a static screenshot as well.