Skip to content
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

bug: SponsorBlock skipping a non-music segment at end of music video in playlist dont autoplay next video in playlist #46

Closed
3 tasks done
Xycotic01 opened this issue Dec 2, 2023 · 9 comments · Fixed by ReVanced/revanced-patches-template#3358
Labels
Bug report Something isn't working

Comments

@Xycotic01
Copy link

Bug description

This is the same issue I brought up about a week ago (https://github.com/ReVanced/revanced-patches-template/issues/68). It was resolved, but I discovered a new video where SponsorBlock skipping a segment at the end of a video (the video is in a playlist) somehow disables the autoplay of the next video in a playlist. I was listening to a music playlist and found this example (https://www.youtube.com/watch?v=SECVGN4Bsgg). Not sure if others may be able to replicate my issues. Just wanted to bring it up. When my previous issue was patched, all of my example videos worked properly (and still work fine).

Error logs

No response

Solution

No response

Additional context

No response

Acknowledgements

  • This issue is not a duplicate of an existing bug report.
  • I have chosen an appropriate title.
  • All requested information has been provided properly.
@Xycotic01 Xycotic01 added the Bug report Something isn't working label Dec 2, 2023
@oSumAtrIX
Copy link
Member

Have you disabled the SponsorBlock patch and confirmed it was caused by it?

@oSumAtrIX oSumAtrIX added the Waiting on author Further information is requested label Dec 2, 2023
@Xycotic01
Copy link
Author

Yes, it is caused by the SponsorBlock patch. I disabled SponsorBlock and it worked fine.

@oSumAtrIX oSumAtrIX removed the Waiting on author Further information is requested label Dec 3, 2023
@oSumAtrIX oSumAtrIX linked a pull request Dec 3, 2023 that will close this issue
1 task
@LisoUseInAIKyrios
Copy link
Contributor

@oSumAtrIX change ReVanced/revanced-integrations@3d660e1 fixed some situations, but it's still not fixed for playlists using this particular video. Add this video to the first of a playlist, change non music sections to autoskip, and at the end of the video it won't skip to the next video.

It's worth noting that skipping using the double tap to skip or manually seeking to the end of the video has no problem. Perhaps a different seek hook might fix all of this, as there's some YT logic to act differently depending on the source of the seek using a seek source enum. Or maybe this can be fixed with more adjustments of the seek time if it's near the end.

@inotia00
Copy link

inotia00 commented Dec 3, 2023

In my case I tried to fix it with the following commit:
inotia00/revanced-integrations@206b9ba

I'm not sure if this is the most ideal workaround, but @LisoUseInAIKyrios, could you test it?

@LisoUseInAIKyrios
Copy link
Contributor

LisoUseInAIKyrios commented Dec 3, 2023

Yes it seems to work correctly for this use case.

Although it might be better keeping the segment times the same as SB provides, since they show up in the voting menu and users might think the timing is wrong and down vote them. The time adjustment could be in VideoInformation#seek() as it's not called often.

@oSumAtrIX
Copy link
Member

Prior to the linked commit, Videoinformationen#seekTo() did seek 500ms earlier if requested to seek more than the video length, but that did not fix all issues.

@LisoUseInAIKyrios
Copy link
Contributor

LisoUseInAIKyrios commented Dec 3, 2023

Before it removed 100ms if it was near or over the video end time, but that still means it can skip to a time past the end of the video.

Prior code:
final long seekToMilliseconds = millisecond <= videoLength - 500 ? millisecond : millisecond - 100;

Code that appears to work:
final long seekToMilliseconds = Math.min(millisecond, VideoInformation.getVideoLength() - 250);

@oSumAtrIX
Copy link
Member

I am noticing that instead of subtracting 100 milliseconds of the length to seek to, it should subtract it from the video length. This was an oversight in the previous code and should be fixed.

@LisoUseInAIKyrios
Copy link
Contributor

100ms doesn't appear to be enough to fix this particular video (playlist stops and does not advance).

250ms works, but I haven't tried between 100-250ms.

@oSumAtrIX oSumAtrIX transferred this issue from ReVanced/revanced-patches-template Dec 14, 2023
@revanced-bot revanced-bot transferred this issue from another repository Dec 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug report Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants