Go Back   Winamp Forums > Winamp > Winamp Discussion

Reply
Thread Tools Search this Thread Display Modes
Old 29th November 2010, 14:05   #1
mphare
Junior Member
 
Join Date: Dec 2003
Location: Texas
Posts: 24
Media Library Report

Hi,

Is there a way to create a printable list of my Media Library? Ideally, it would provide the data in the same columns and same order as 'Local Media' does (e.g. if I sort Local Media by Artist, then so does the report)

I have Winamp installed in two locations and I want to sync the media across the two sites. A list would provide a simple way to make sure the two sites are the same. Now that I say that, exporting to a CSV or XML file would be good to. I could pull them into excel or create some bash scripts to do the comparison for me.

Thanks,

- mike

------------------------------
Mike

GnuPG Key fingerprint = 1AD4 726D E359 A31D 05BF ACE5 CA93 7AD5 D8E3 A876
mphare is offline   Reply With Quote
Old 29th November 2010, 14:12   #2
DrO
-
 
DrO's Avatar
 
Join Date: Sep 2003
Location: UK
Posts: 22,278
http://nunzioweb.com/daz/mlexporter.html fits that need though requires Winamp 5.57 as it works with the most recent changes of the library database format.

-daz
DrO is offline   Reply With Quote
Old 29th November 2010, 16:50   #3
MrSinatra
Forum King
 
MrSinatra's Avatar
 
Join Date: Dec 2004
Location: WKPS, State College
Posts: 3,838
Send a message via AIM to MrSinatra
neat.

some feature reqs:

export to excel native format.
export to html.
ability to export artwork optionally, and set the max size.
ability to choose what criteria are exported, and in what order, meaning i would want it like this:

AA, A, album, track #, title, length, rating, genre, bitrate, filepath

or whatever a user wants.

mp3tag has some powerful export options, BUT i hate all the tacky templates over there.

PENN STATE Radio or http://www.LION-Radio.org/
--
BUG #1 = Winamp skips short tracks
Wish #1 = Multiple Column Sorting
Wish #2 = Add TCMP/Compilation editing
MrSinatra is offline   Reply With Quote
Old 29th November 2010, 17:00   #4
DrO
-
 
DrO's Avatar
 
Join Date: Sep 2003
Location: UK
Posts: 22,278
exporting to native xls isn't going to happen. koopa also asked for it but there's just no benefit to having to work out the file format (though i think it is sort of documented) when importing a csv file does the same without the extra space in the file.

not sure about html output as not sure what the benefit of that would be and also the format unless i just dump it out as a basic table. as a basic table is more likely for me to get it done this side of the festive season (though i'm still wanting to get xspf support in there).

with the artwork, i believe i can read the two sets of database files containing the information and vaguely work out the size it has been stored in but i was never too certain on the benefit / use of just dumping a load of image data (or where / how to place / name it).

the choice on what is exported is something i thought about but haven't done anything towards though would pretty much require the internals to be re-done to make it possible (as it dumps the data pretty much in the order things are stored in the db files).

and ironically, the two people i implemented the plug-in for have never posted back / replied to the test versions i sent (got to love that, heh).

-daz
DrO is offline   Reply With Quote
Old 29th November 2010, 18:18   #5
MrSinatra
Forum King
 
MrSinatra's Avatar
 
Join Date: Dec 2004
Location: WKPS, State College
Posts: 3,838
Send a message via AIM to MrSinatra
Quote:
Originally Posted by DrO View Post
not sure about html output as not sure what the benefit of that would be and also the format unless i just dump it out as a basic table. as a basic table is more likely for me to get it done this side of the festive season (though i'm still wanting to get xspf support in there).
don't know what xspf is, but html output would make it look nice when posted to the web, (you could browse my collection) and allow the insertion of artwork images, one per album.

Quote:
Originally Posted by DrO View Post
with the artwork, i believe i can read the two sets of database files containing the information and vaguely work out the size it has been stored in but i was never too certain on the benefit / use of just dumping a load of image data (or where / how to place / name it).
in an html export, you could arrange by AA and album, and then have the file limited to one side being a max of 200 (or whatever the user specifies) pixels, maintaining aspect ratio.

just use the same filename it already has... if its generic like Folder.jpg, do <AA>-<Album>-Folder.jpg

Quote:
Originally Posted by DrO View Post
the choice on what is exported is something i thought about but haven't done anything towards though would pretty much require the internals to be re-done to make it possible (as it dumps the data pretty much in the order things are stored in the db files).

and ironically, the two people i implemented the plug-in for have never posted back / replied to the test versions i sent (got to love that, heh).

-daz
can't speak to the internals, but couldn't the plugin call the data in the order wanted? kinda like title formating, or something like that, use the symbols to arrange the output?

when i exported to a txt file, i basically just got a big list of every files filepath. useful in case of calamity or i want to send to others if they want to search it, but not very friendly or really useful otherwise.

PENN STATE Radio or http://www.LION-Radio.org/
--
BUG #1 = Winamp skips short tracks
Wish #1 = Multiple Column Sorting
Wish #2 = Add TCMP/Compilation editing
MrSinatra is offline   Reply With Quote
Old 29th November 2010, 19:24   #6
DrO
-
 
DrO's Avatar
 
Join Date: Sep 2003
Location: UK
Posts: 22,278
Quote:
don't know what xspf is
xspf is a shareable xml based playlist format -> http://xspf.org/ it's basically something i'd like to add in to complement the xspf playlist loader floating around for Winamp (in the sdk if i remember correctly) and also so i have an xml format but not one that is tied to iTunes.

Quote:
in an html export, you could arrange by AA and album, and then have the file limited to one side being a max of 200 (or whatever the user specifies) pixels, maintaining aspect ratio.
now i see what you're wanting to achieve with an html output (and makes more sense with the AA aspect).

Quote:
but couldn't the plug-in call the data in the order wanted? kinda like title formatting, or something like that, use the symbols to arrange the output?
yes it could do that, but i'd have to change things around to cope with doing that. as it was a quick day and a bit job to get the plug-in to it's current state, i only really designed it to just dump the data based on the two requests and how that was described and then for some of the bits i added in additionally to the requests. so i just made it output things in the order they were instead of going for the complete design from the start where it's all configurable and all that fun stuff

Quote:
when i exported to a txt file, i basically just got a big list of every files filepath. useful in case of calamity or i want to send to others if they want to search it, but not very friendly or really useful otherwise.
that was one of the ones requested to just dump the filenames so it does what it does. it was the inflexibility of that which made me then add in the csv support so it is easier to export and then manipulate the file later.

the fun will be if i get around to importing the data back into the library.

-daz
DrO is offline   Reply With Quote
Old 2nd December 2010, 21:45   #7
mphare
Junior Member
 
Join Date: Dec 2003
Location: Texas
Posts: 24
Nice plugin, Thanks for the link!
Since we are requesting features...
I'd like to be able to export information as it is shown in my Media Browser.. In otherwords, Sorted as my media library is sorted, and containing the columns I've Customized.
In short, I'd like a dump of my media library as I am currently viewing it.

But even without that.. It's a nice plugin.

Thanks again!

------------------------------
Mike

GnuPG Key fingerprint = 1AD4 726D E359 A31D 05BF ACE5 CA93 7AD5 D8E3 A876
mphare is offline   Reply With Quote
Old 2nd December 2010, 22:15   #8
DrO
-
 
DrO's Avatar
 
Join Date: Sep 2003
Location: UK
Posts: 22,278
well the columns is pretty much what MrSinatra is requesting though i don't know of anyway to get the actual sorting order either via reading in settings or by hacking into the current view.

it would be possible to do it based on a specific view / query and is already something i had got in my mind to do (it already does it as it basically specifies a blank query to work on the whole dump) so that'd be about the nearest i can do.

-daz
DrO is offline   Reply With Quote
Old 10th January 2011, 00:28   #9
tigercap
Junior Member
 
Join Date: Dec 2010
Posts: 5
I, too, would love to be able to copy all my media library info. I have thousands of songs and have taken great pride in having actual LP, year, etc. I'd love to have that same view in Excel and sort through it, save it, send it to friends, etc.
tigercap is offline   Reply With Quote
Reply
Go Back   Winamp Forums > Winamp > Winamp Discussion

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump