Skip to content

Question about potential use case #103

Closed Answered by dylanljones
musicalnerd asked this question in Q&A
Discussion options

You must be logged in to vote

I am not sure what you are trying to achieve. I think you are confusing "My Tags" with the metadata of audio files. "My Tags" are user-defined attributes that you can add to tracks in the Rekordbox collection. These values have nothing to do with tracks on streaming platforms (like Tidal) since they are user-defined.
However, you can access the "My tags" data with pyrekordbox:

from pyrekordbox import Rekordbox6Database

db = Rekordbox6Database()
content = db.get_content()[10]  # Get a track from the database
for mytag_song in db.get_my_tag_songs(ContentID=content.ID):
    mytag = mytag_song.MyTag
    print(mytag.Name)

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@musicalnerd
Comment options

@dylanljones
Comment options

Answer selected by dylanljones
@musicalnerd
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants