Hi guys!

I'm working on export to the Traktor's .NML playlist from mixxx, and I
need some help. .NML it is simple XML file, which contains all track's
data.

You can check my code here. It is dirty now, but works well:
https://github.com/xorik/mixxx/commit/90e92088398981bf88508cafc35f4dae8be94586

I've used BaseSqlTableModel* pPlaylistTableModel to get track's data,
e.g.:

        i = pPlaylistTableModel->fieldIndex(PLAYLISTTRACKSTABLE_TITLE);
        if (i >= 0) {
            title =
pPlaylistTableModel->data(pPlaylistTableModel->index(j,i)).
                    toString();
        } 


I'm get this code from other functions. Now I need to get some extra
info for the playlist. I need to export to Tracktor this fields:

- Track's BPM
- Track's key
- Track's hotcues
- Time of one of track's beat marker (e.g. first beat's time)

Can you help me? How can I get this fields from my export function?


------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Reply via email to