You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for making this app. It solves a lot of my problems trying to get my watched media into Trakt.
I have noticed that mediaTitle often shows an episode title and not the series. I know many apps don't give much metadata, but is there a way to dump out all the values of MediaMetadata? I've tinkered a little, but kotlin and android are new to me.
Thanks
The text was updated successfully, but these errors were encountered:
This will replace the title with a list of all populated keys and values in MediaMetadata, so you can see if the series title is in there. Since there is no standard way to provide this information, different apps may use different keys, or not provide the info at all.
If you find the data you need, I can help you to fine-tune the code to your needs or add a feature to make that data available.
For the record, the app uses METADATA_KEY_DISPLAY_TITLE if available for the title, otherwise it uses METADATA_KEY_TITLE and combines it with METADATA_KEY_ARTIST if also available. Ideally an app would send the series title as METADATA_KEY_ARTIST and the episode title as METADATA_KEY_TITLE and it would as-is, but I assume not many apps do that.
Other keys that could potentially be used to provide a series name are METADATA_KEY_ALBUM, METADATA_KEY_COMPILATION, METADATA_KEY_DISPLAY_SUBTITLE.
Hi, thanks for making this app. It solves a lot of my problems trying to get my watched media into Trakt.
I have noticed that mediaTitle often shows an episode title and not the series. I know many apps don't give much metadata, but is there a way to dump out all the values of MediaMetadata? I've tinkered a little, but kotlin and android are new to me.
Thanks
The text was updated successfully, but these errors were encountered: