-
-
Notifications
You must be signed in to change notification settings - Fork 180
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
Support on skipping credits in intro skipper #620
Comments
I know it's not exactly what you are asking for but after is merged it's possible to create a "generic" way to skip intros / credits sections, without any 3rd party plugins :) |
@Natanel-Shitrit Assuming your video supports it, this also eliminates a lengthy scan that requires Chromaprint, but it just doesn't have that "Netflix" feel to it. |
Most of the shows that I have (Anime) have chapters, that might not be the case for "normal" shows. You can integrate the chapters with the skip button if you want the "Netflix" feel - I just suggested to use the chapter info as the way of detection for the intro / credits 😄 |
It almost begs the question why literally everyone opted for Chromaprint, but not a single static ffmpeg for Mac enables it. Anyway, that isn't why I was here. I was actually here to ... Edit: well, actually, here isn't the best place for it. |
I guess you are referring to your discussion here intro-skipper/intro-skipper#52
And you linked this check: findroid/player/video/src/main/java/dev/jdtech/jellyfin/viewmodels/PlayerActivityViewModel.kt Lines 247 to 262 in c30b76d
Doesn't
|
Actually, no. Two different apps can use the same database, but interpret the values differently. That's what is happening. This app is getting the value from the plugin, but not necessarily checking it the same way. At the time the plugin was written, it only supported an arbitrary dismissal time of the button. I added the option to keep it visible for the duration of the intro just recently. The original plugin had an option to retain a section of the intro. It also accounted for the possibility that if the code defaulted to showing the button for the entire intro (it was a fallback back then), it would subtract that time. Oddly, though, this was done AFTER the end time was already determined for the button and only served to mark the playback value. When using the option to retain the button for the entire intro, most of the original code gets ignored in favor of the raw intro times. The app checks every second, but the plugin is using 3 decimal places. The difference between when the value triggers the display in the app to stop and when the intro ends is somewhere between 1 - 2 seconds off, usually resulting in the button not disappearing right away. If there was intro left, it would likely go unnoticed. TL;DR |
Is your feature request related to a problem? Please describe.
Credits not able to be skipped
Describe the solution you'd like
Avaliable in https://github.com/jumoog/intro-skipper's build
Use"IntroSkipperSegments"(support both intro and credits) at first and use "IntroTimestamps"(this only support intro)
Format of IntroSkipperSegemets:
Additional context
This should only introduce some small modification without breaking the original support, hope this can be implemented.
The text was updated successfully, but these errors were encountered: