Replies: 1 comment 7 replies
-
Hey Luke, Thank you and a happy new year to you too! Cue points in Rekordbox are a bit confusing. The local cue points are stored in the DjmdCues table of the master.db database, not in the ANLZ files. I am guessing the cue points are written to the exported ANLZ files when preparing the USB drive. I haven't checked the exported ANLZ files though, so far I only looked at the local ANLZ files. In the exported ANLZ files, the cue points should be stored in the Accessing the cue points in the database is really straight forward. Using the newest version from pyrekordbox import Rekordbox6Database
db = Rekordbox6Database()
content = db.get_content(ID=<content id>)
for cue in content.Cues:
print(cue) I actually just started to work on full cue point support in the database handler, check the cue branch here;) Adding new cue points to the database is simple for most tracks, however I am a little stuck on tracks with variable or average bit rate (ABR/VBR). For this the |
Beta Was this translation helpful? Give feedback.
-
Hello and Happy New Year! Many thanks for this awesome project.
I was wondering what the plan is for being able to write both memory cue points and hot cue points to the meta data files?
The readme currently says:
"The files have names like ANLZ0000 and come with the extensions .DAT, .EXT or .2EX. They include waveforms, beat grids (information about the precise time at which each beat occurs), time indices to allow efficient seeking to specific positions inside variable bit-rate audio streams, and lists of memory cues and loop point."
So as it stands, is pyrekordbox able to parse the files were memory cue points are set? What needs to be done in order to write memory and hot cue points? I'd be happy to work on this.
Thanks,
Luke
Beta Was this translation helpful? Give feedback.
All reactions