Multiple track listings

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Multiple track listings

Re: Multiple track listings

by tmf » Fri Aug 14, 2026 5:57 pm

Ian,

You're welcome. I'm still using MM4 for a few things myself. If you are interested, the same author has another one called 'Just List Artists', also for MM4 only.

Re: Multiple track listings

by IanRTaylorUK » Fri Aug 14, 2026 6:16 am

Thanks for that MMW4 Add-On reference. I run MMW4 for a number of reasons and can check that out.

Re: Multiple track listings

by tmf » Sun Aug 09, 2026 12:40 pm

For MediaMonkey 4 Only, there is an old Add-on 'Just List Albums 2.1' that might do what you want.

It's still available from the Add-ons page under MediaMonkey 4 > Management > Reports > Just List Albums 2.1

Re: Multiple track listings

by IanRTaylorUK » Wed Jul 29, 2026 6:34 am

Part Two
=======

To get the information out of Media Monkey, we first create a Backup of the database file MM.DB

In my case I do a full backup to a ZIP file, so I also have to "Extract All" to expose the MM.DB file.

I open the "backed up" MM.DB file using DB Browser for SQLite and check I have the database readable (click database structure tab and press F5)

In the Execute SQL tab, I type the simplest SQL possible i.e.

SELECT * FROM Albums WHERE ALBUM <> ""

and execute using the "Play" icon.

You can now highlight the whole table by clicking the LEFT / UPPERMOST part of the results display and then right click to "Copy with Headers. Open your spreadsheet and paste. You now have your list of Albums / Artists.

You might want to remove a few columns that are not useful and format others to your liking.

Suggest you save your SQL to a text / notepad file for future use, perhaps adding some notes in an SQL comment block (as shown in Part One).

P.S. You could bypass using the SQL and display the Albums table but then you would include no name ALBUM(s) = "".

Re: Multiple track listings

by IanRTaylorUK » Wed Jul 29, 2026 6:20 am

Part One
=======

I think you probably want to start with using two add-ons - SQL Editor and Custom Nodes:

https://www.mediamonkey.com/addons/brow ... tom-nodes/
https://www.mediamonkey.com/addons/brow ... ql-editor/

You then write your SQL in the editor and test the execution - note you are limited to displaying 1000 rows!

The SQL might look something like this:

Code: Select all

/* Creates a simple catalogue of the music collection by listing each
    unique Artist and Album combination only once.
    
    Purpose:
      - Produce a printable/exportable catalogue of albums.
      - Avoid duplicate entries caused by multiple tracks on the same album.
      - Sort the results alphabetically by Artist and then Album.
      
    Output:
      Artist | Album
 */
 SELECT DISTINCT Artist , Album
FROM Albums
WHERE Album <> ""
ORDER BY Artist, Album;
Once you have fine tuned your SQL statement, then you can transfer it to become a Custom Node - specifically an ALBUM type Custom Node. But the above WILL FAIL!!! Also it is not convenient to get printable "output" from the SQL Editor.

To get Custom Nodes to work you need to make available ALL fields from the Albums table, so the SQL becomes:

Code: Select all

SELECT DISTINCT *
FROM Albums
WHERE Album <> ""
ORDER BY Artist, Album
You will then see a problem - you have a Tile'd display of Albums and Artists - not particularly useful if you want to export!

So whilst we can get the information, we can't get it out of Media Monkey 2024 so easily!

Multiple track listings

by wileewonka » Tue Jul 28, 2026 8:36 pm

Has anyone experienced, when trying to create a simple catalogue of albums, multiple duplication of tracks (I have had duplicate, triplicate and septuple listings of the tracks on one album)?
Is there a fix/correction for this?
All I want to do is create a catalogue listing artist name and album title. Nothing truly extensive. I have unsuccessfully tried to do this for years. I have restored to attempting to manually create a catalogue, but with 1700 CD's and several hundred records it is too daunting.
I have contacts MM support, multiple times, and, even thought they were responsive, had no substantive functional answers.
Thank you

Re: Multiple track listings

by Lowlander » Tue Jul 28, 2026 4:21 pm

You left the Support Ticket for this unanswered.

Start with checking the Paths of the duplicate files. Are they different Paths for each duplicate or do they have the exact same Paths?

Multiple track listings

by wileewonka » Tue Jul 28, 2026 3:00 pm

Has anyone experienced, when trying to create a simple catalogue of albums, multiple duplication of tracks (I have had duplicate, triplicate and septuple listings of the tracks on one album)?
Is there a fix/correction for this?
All I want to do is create a catalogue listing artist name and album title. Nothing truly extensive. I have unsuccessfully tried to do this for years. I have restored to attempting to manually create a catalogue, but with 1700 CD's and several hundred records it is too daunting.
I have contacts MM support, multiple times, and, even thought they were responsive, had no substantive functional answers.
Thank you

Top