When you export your music collection as a text file, is there an option to include the # of times you've played a certain track in it. I've looked and looked, but none of the symbols listed in the export window seem to do the trick? Is there a way to do this? Thanks!
Export options
Collapse
X
-
Tags: None
-
-
Re: Export options
hmm...is there any way to extract this information from the .mcc file then (I assume that's where it's stored?). Thanks for your help...Comment
-
Re: Export options
Yes, the mcc is a static structure:
//-----A track in the data base--------
#define MaxArtistLen 100
#define MaxAlbumName 100
#define MaxTrackName 100
#define MaxGenres 20
struct STdBTrack {
char Artist[MaxArtistLen];
char Track[MaxTrackName];
char Album[MaxAlbumName]; // NB when matching have to add artist name as well
char FileName[MAX_PATH];
unsigned char Preferrence; // 0 to 9
short int kbps; // 0 is not used, 320 128 etc
int kHz;
short int VolumeBoost; // 1>>500>>1000 (1 is x0.3 1000 is x3 (+_10dB)) or VBAutoNorm (see below) // 500 is no change 1000 is * 10 0 is / 10 VBAutoNorm is Auto Normalize
short unsigned int Genre[MaxGenres]; // a genre ident pointer (genre defined in clsGenre)
short int Year; // say 1998
char Channels;
unsigned int FileSize;
unsigned int Lengthms;
int ColorHighlight; // see below
int TimesPlayed; // number of times the track has been played
FILETIME TimeAddedTodB; // time added to dBpowerAMP
//------
int Blank1; // *** THIS is used by the editor to point at other items (such as type)
unsigned char TrackNumber;
// unsigned char Bits; // bits - ie 8 16 32 Add some time
char Blank[3];
};Comment
-
Comment