[thelist] Is there a windows MP3 player that logs what's being listened to?

David U. davidu at everydns.net
Mon Oct 21 14:19:01 CDT 2002


Liam Delahunty wrote:
> Subject says it all really:
> Is there a windows MP3 player that logs what's being listened to?
>
> I want to be able to collect daily logs of what's being listened to
> for a chart section on a blog.

You could write a winamp3 MAKI script to do it in a couple lines I'm sure.

Something along the lines of:

#include <lib/std.mi>
System.onScriptLoaded() {
    //Open a file here for appending
}
System.onPlay() {
    //add the song title to the end of the file...maybe the song length or
whatever too.
    getPlayItemMetaDataString("songname");
}
System.onScriptUnLoaded() {
    //Close the file here
}

Something like that would work, but I don't know how to open/close files in
MAKI -- it might have to be made a plugin.

-davidu





More information about the thelist mailing list