Search found 631 matches

by IanRTaylorUK
Wed Aug 12, 2026 5:48 am
Forum: Need Help with MMW Addons?
Topic: Just List Artists or Album Artists & Just List Albums
Replies: 8
Views: 9330

Re: Just List Artists or Album Artists & Just List Albums

The EXE I use is "DB Browser for SQLite.exe". DB Browser for SQL Cipher is for encrypted .db files so it is expecting a passphrase or something (but can be used to open un-encrypted DBs). One "trick" is to press F5 after opening your Media Monkey backup "MM.DB" file! So for example - if on the ...
by IanRTaylorUK
Fri Aug 07, 2026 9:08 am
Forum: MediaMonkey for Windows - Beta testing & feedback
Topic: MM 2027 3516 has trouble to repeat one track
Replies: 2
Views: 195

Re: MM 2027 3516 has trouble to repeat one track

Hi Peke, do we have an ETA for the next version? I am sort of thinking early September given that some key people might take a week or two break / vacation etc.
by IanRTaylorUK
Wed Jul 29, 2026 6:34 am
Forum: Need Help? (MMW4)
Topic: Multiple track listings
Replies: 5
Views: 523

Re: Multiple track listings

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 ...
by IanRTaylorUK
Wed Jul 29, 2026 6:20 am
Forum: Need Help? (MMW4)
Topic: Multiple track listings
Replies: 5
Views: 523

Re: Multiple track listings

Part One ======= I think you probably want to start with using two add-ons - SQL Editor and Custom Nodes: https://www.mediamonkey.com/addons/browse/item/custom-nodes/ https://www.mediamonkey.com/addons/browse/item/sql-editor/ You then write your SQL in the editor and test the execution - note you ...
by IanRTaylorUK
Tue Jul 28, 2026 10:22 am
Forum: Beta Testing, Bugs & Feature requests (mma)
Topic: More sorting options
Replies: 5
Views: 743

Re: More sorting options

Sorry, I should have explained better. Once you have a selection sorted how you like in Media Monkey Windows, make a Playlist then synchronise that Playlist with the Android Device. Do not be concerned too much about the extra data - it is very small for each Playlist AND if the particular tracks ...
by IanRTaylorUK
Sun Jul 26, 2026 9:14 am
Forum: Need Help with MMW Addons?
Topic: Hierarchical Playlist Export with Duplicate Analysis of Tracks
Replies: 0
Views: 1278

Hierarchical Playlist Export with Duplicate Analysis of Tracks

I wanted to share a commented DB SQLite SQL script designed for analyzing and exporting MediaMonkey playlists (MM.DB) via DB Browser for SQLite (or any external SQLite database manager). If you’ve ever tried to inspect your playlist structure outside of MediaMonkey, you might have run into issues l ...
by IanRTaylorUK
Sun Jul 26, 2026 8:16 am
Forum: Need Help with MMW Addons?
Topic: Word Macro: Audit Exported M3U Playlists for Missing Audio Files
Replies: 0
Views: 238

Word Macro: Audit Exported M3U Playlists for Missing Audio Files

Not strictly an add on!, But I thought I'd share a small Word VBA utility that I've been using to validate exported MediaMonkey playlists. Yes, using Word for this may seem a little unusual at first glance. Most people would probably expect a standalone utility, PowerShell script, or perhaps an add ...
by IanRTaylorUK
Sun Jul 26, 2026 7:58 am
Forum: Need Help - MMW
Topic: Can i delete these folders?
Replies: 5
Views: 720

Re: Can i delete these folders?

You can set the schedule for backups (daily / weekly / monthly) and also the number of backups to retain. You will find this under Manage Database under the File menu option.
by IanRTaylorUK
Tue Jun 23, 2026 5:39 am
Forum: Beta Testing, Bugs & Feature requests (mma)
Topic: More sorting options
Replies: 5
Views: 743

Re: More sorting options

One way to get more sorting options is the use the add-on Custom Nodes as this allows you to define your own queries and sorts. Consider, for example: 1). 40 Newest Albums by Added Date / SELECT * FROM Albums WHERE ID IN (SELECT IDAlbum FROM Songs GROUP BY IDAlbum HAVING Count(TrackNumber) > 3 ORDER ...
by IanRTaylorUK
Sat May 30, 2026 10:50 am
Forum: Deutsches Forum
Topic: Dateiein umbenennen - Spalte "Auflösung"
Replies: 5
Views: 1276

Re: Dateiein umbenennen - Spalte "Auflösung"

You may want to try the following in SQl Editor: SQL 046 Video Quality & Bitrate Audit Purpose: Analyzes your Video and TV Show library to find low-resolution files or files with missing dimensions, helping you target items for High Definition (HD) upgrades. Clean SQL: SELECT TrackType, SongTitle ...
by IanRTaylorUK
Sat Apr 18, 2026 7:43 am
Forum: Need Help - MMW
Topic: Send to M3U
Replies: 3
Views: 667

Re: Send to M3U

Option 1 - File / Export / Export All Playlists...

Option 2 - Play Lists Node, select a single Play List then right click / Send To / M3USPXF...

Option 3 - Select the Playlist Node in the "tree" then right click / Export All Playlists...
by IanRTaylorUK
Wed Apr 15, 2026 8:45 am
Forum: Need Help - MMW
Topic: Unknown Artist list contains Movies
Replies: 2
Views: 520

Re: Unknown Artist list contains Movies

Go to Tools / Options / (Library) Collection and Views.

Ensure Movies / Music / Music Videos / Podcasts / TV Series are ticked (as appropriate to your library contents).

Instead of Entire Library -> Files To Edit -> Unknown Artist use Music / Files To Edit / Unknown Artist
by IanRTaylorUK
Sun Apr 12, 2026 4:01 am
Forum: MediaMonkey for Windows - Beta testing & feedback
Topic: [REQ] Dynamic Playlist on Date
Replies: 5
Views: 989

Re: [REQ] Dynamic Playlist on Date

Use the Custom Nodes Add-On. Add a "Track" type query using Configure Custom Nodes called "Rolling 10 Years" Then an SQL query something like: SELECT * FROM Songs WHERE CAST( substr( Year,1,4 ) AS INTEGER ) BEWEEN ( CAST ( strftime ( '%Y' , 'now' ) AS INTEGER ) -9 ) AND CAST ( CAST ( strftime ( '%Y ...
by IanRTaylorUK
Fri Apr 03, 2026 5:00 pm
Forum: Need Help? (MMW4)
Topic: All mp3 indexed, but see only files and not additionally folders
Replies: 3
Views: 1715

Re: All mp3 indexed, but see only files and not additionally folders

This would work in Media Monkey 2024 by using a Collection (and probably Media Monkey 4 using Manage Collections). The Collection definition might look like this: Match ANY of the following criteria: Path Contains Genesis Album Artist Contains Genesis Artist Contains Genesis Title Contains Genesis ...
by IanRTaylorUK
Fri Mar 27, 2026 9:58 am
Forum: Need Help - MMW
Topic: Database DateTime format - SQL Query
Replies: 1
Views: 925

Re: Database DateTime format - SQL Query

Media Monkey uses the Julian Date / Offset and can be used to sort or select. Use the SQL Editor add-on initially to create a query. You might want to start with something like: SELECT Songs.Artist, Songs.SongTitle, Played.PlayDate FROM Played JOIN Songs on Played.IDSong = Songs.ID WHERE Songs ...