-
-
Notifications
You must be signed in to change notification settings - Fork 504
Description
Is your feature request related to a problem? Please describe.
Currently the MediaItem object is very bare bones. This means that certain queue operations such as playnext
do not work since there is no index.
Describe the solution you'd like
I would like certain additional parameters added to MediaItem object:
- index (int)
- url/file path (string)
- play count (int)
- last played (dateTime or int)
These are very common parameters and can help other developers from not needing to keep converting their custom object to the mediaItem object.
Describe alternatives you've considered
Currently i am converting my custom object to mediaitem object. But since index parameter is not present in mediaitem object i am unable to perform playnext operation in queue. playnext
operation adds duplicate mediaitem's to the queue and thus index parameter is needed.