title
Products            Buy            Support Forum            Professional            About            Codec Central
 

Export options

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Disastorpasztor

    • Mar 2005
    • 3

    Export options

    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!
  • Spoon
    Administrator
    • Apr 2002
    • 44386

    #2
    Re: Export options

    Don't think there is that option.
    Spoon
    www.dbpoweramp.com

    Comment

    • Disastorpasztor

      • Mar 2005
      • 3

      #3
      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

      • Spoon
        Administrator
        • Apr 2002
        • 44386

        #4
        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];
        };
        Spoon
        www.dbpoweramp.com

        Comment

        • Disastorpasztor

          • Mar 2005
          • 3

          #5
          Re: Export options

          Thanks Spoon...you 'Da Man'! :]

          Comment

          Working...

          ]]>