-
Notifications
You must be signed in to change notification settings - Fork 105
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
Feature request: Sync Trakt Lists as Plex Collections #1667
Comments
api for this seems to exist: |
createCollection has a required parameter |
Also, you can Grant Access to a playlist, so the request is not really justified? |
Collections should be library/section-wide so I'm not quite sure why this is required.
Granting Access seems to be new indeed, but is done list-by-list and user-by-user which isn't really practical with lots of lists and users. Finally, I think you're already planning it like that, but to be sure, having the option to sync the lists as both Playlist and Collection in Plex would give the best experience. |
Adding both options of course bloats the code :) |
Tables to understand how Plex lists work, so we could improve playlist sync.
|
Collection is "section" bound (section.createCollection), Playlist is "server" bound (server.createPlaylist). Also collections are visible in sections anybody having access to section can see collection, playlists are per user (but can be shared to other users) |
After several tests on Plex Web GUI, I agree with this summary 👍 Second option can stay manual. |
I've tried to tackle this problem several times, and that collections require section make the problem rather difficult to solve. internally the playlists have been global, but now it must be section based, means need to pass section variable around, a lot. logically it would make sense to create collection to current section, but it's easier to create collection to specific section. |
From what I saw, items just need to be tagged to be part of a collection. Some other tools : |
Also, one difference with Collection is that all items in the Collection must be in the same Section or you get With playlist you could have playlist consisting of items from dirrerent Sections or even different servers, with Collection we may even need to create Collection in every Section... EDIT: not sure about this. something else caused 400 error EDIT2: I'm unable to create cross section collection |
No problem. |
meaning I could have "Greatest 1000 Movies" in every section... |
Yes, in every section where you have movies. |
I'm forced to create different section for movies in specific language, so I don't have to go fix metadata for every movie to be in specific language. |
Ok. And having a "Greatest 1000 Movies" in each section is a problem ? |
not really a problem, but the fact what's different with collections and playlists |
Feature description
Sync Trakt Liked Lists as Plex Collections instead of Plex Playlists.
Previously discussed: #134 (comment)
Use case
Plex's playlist GUI is very limited compared to Collections, and I'd like for shared users to have access to the synced lists.
To keep in mind:
Workarounds
No workarounds possible
Plan to implement
Sorry, no experience in Python
The text was updated successfully, but these errors were encountered: