-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Sort entries in bookmarked playlist #9497
Comments
I can work on this. However, I still have some questions regarding the implementation. AFAIK there is currently no option to sort feeds within NewPipe, right? If that's the case I believe that I should implement this feature keeping in mind that we can potentially also use it for other lists of streams in NewPipe.
As for sorting options that let you sort streams by the time you added them to the playlist: I could definitely implement that. However, this information is not currently stored in the database and I'm not sure if this would bloat the database too much. @opusforlife2 Do you have an opinion on all of this? |
#8473 is intended to seperate watched and unwatched videos in feed. Is this sort option still required? |
@SameenAhnaf I agree that this sorting option is not needed. Even without the existing theme, IMO this would be more of a filter option than a sort option. Do you have an opinion on this comment? |
I can't comment on the coding aspect of this because I'm not qualified. But I get your point about:
so I guess that will have to be done from scratch for local, non-service-based sorting and filtering. Have I understood this correctly? Let me just confirm this with the devs once, since I assume this will need a major PR. |
@Jared234 Thanks for offering to implement this, but could you hold off on such a big feature for now? The team is already juggling several huge PRs and we'd like things to settle down some more before taking on additional work. Keep the bugfixes coming, though. 😉 |
@opusforlife2 Yes, no problem. I'm definitely going to do that. 😄 |
i'm not 100% sure how the bookmarked playlists are implemented now, but i assume the videos in the playlist are stored locally. i can help giving feedback on PR |
That also had me confused. We have bookmarked online playlists that mirror a playlist on youtube but these are read-only. I think this is about saved playlists, the kind stored locally and read-write. I don't think they store an "added datetime" per video at the moment but just a flat order. While you could add that tag for new additions and save a setting per playlist to insert new videos at the right position to retain the sorting, a one-time sorting might be easier. That would basically be a button that parses through all entries once by a given video property and saves the result as a flat order. That combined with a per-playlist switch to insert new videos at the first position instead of the last might already accomplish what you are asking for, right? |
custom created playlist it is, yes. |
As someone with a huge playlist on NewPipe who scrolls far to find the latest videos added, a "sort by" would be very helpful! I've wanted this for a while, thanks for bringing this up. There should be a toggle button at the top that's an arrow to switch between last added and first added as well |
each video in a playlist would need "date added" only to view when a video was added. although grouping the videos by date added (like pictures in the Gallery app) could be useful, so for that we would need "date added" rather than just "added index" |
Checklist
Feature description
Clicking on a "bookmarked playlist" opens a list-view of all videos. Currently adding a new video appends it to the back (no sorting possible).
Add an option for sorting the entries of the list.
This could be added in 3-dot-menu on the top right as "Sorting" entry.
Clicking "Sorting" 3-dot-menu-entry could open a modal with radio buttons to select a sorting style
option 1 and 2 would solve my issue already, but when on it could be easily extended with more options.
Why do you want this feature?
I do use a custom playlist where I add videos to 'watch later'.
Since my list contains a lot of videos by now (200+ entries) I would need a way to organize better.
When I add a new video it gets appended at the end of the list. I do have to scroll down a lot to see newly added videos.
Additional information
old feature request without template #9202
The text was updated successfully, but these errors were encountered: