Search found 621 matches

by IanRTaylorUK
Sat Apr 18, 2026 7:43 am
Forum: Need Help - MMW
Topic: Send to M3U
Replies: 3
Views: 230

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: 165

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: Beta testing, bugs, and feature requests - MMW 2024
Topic: [REQ] Dynamic Playlist on Date
Replies: 5
Views: 371

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: 635

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: 472

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 ...
by IanRTaylorUK
Fri Mar 06, 2026 11:31 am
Forum: MediaMonkey for Windows developer forum
Topic: Can’t open MM DB in SQLite Browser
Replies: 3
Views: 586

Re: Can’t open MM DB in SQLite Browser

After File Open Database, click on the Database Structure tab. Now press F5 to refresh. Do the Tables / Indices / Triggers now show?
by IanRTaylorUK
Wed Mar 04, 2026 3:01 pm
Forum: Need Help - MMW
Topic: Podcasts question
Replies: 6
Views: 531

Re: Podcasts question

The world of podcast "directories" seems to have undergone a massive shift recently. It seems we’ve moved from a time when everyone used a few independent lists to the current "landscape" dominated by "walled gardens" and one massive, open-source backbone! A few years ago, you might have used d ...
by IanRTaylorUK
Tue Feb 24, 2026 6:52 am
Forum: Need Help with MMW Addons?
Topic: Custom Nodes for MMW5/2024+
Replies: 11
Views: 3708

Re: Custom Nodes for MMW5/2024+

The Purpose of This Query The primary purpose of this SQL script is to identify track number collisions within your music collection (specifically TrackType 0). Unlike a simple duplicate file finder, this query detects "logical duplicates"—instances where two or more distinct song entries are c ...
by IanRTaylorUK
Tue Feb 24, 2026 6:20 am
Forum: Need Help with MMW Addons?
Topic: Custom Nodes for MMW5/2024+
Replies: 11
Views: 3708

Re: Custom Nodes for MMW5/2024+

If we take my SQL 004 for duplicates: SELECT Artist, SongTitle, COUNT(*) as Occurrences FROM Songs GROUP BY Artist, SongTitle HAVING Occurrences > 1 ORDER BY Artist ASC; and add TrackNumber, we get: SELECT Artist, SongTitle, TrackNumber, COUNT(*) as Occurrences FROM Songs GROUP BY Artist, SongTitle ...
by IanRTaylorUK
Thu Feb 19, 2026 10:42 am
Forum: Need Help - MMW
Topic: MM Knowledge Base
Replies: 2
Views: 338

Re: MM Knowledge Base

Tools like WebCopy (Windows) or HTTrack can download the site for offline viewing, though these can be complex to use! Perhaps a better approach is to get your AI Agent to create a PDF / Markdown document with a specific / targetted prompt that is sympathetic to other users i.e. an "Overnight ...
by IanRTaylorUK
Tue Feb 17, 2026 4:30 pm
Forum: MediaMonkey for Windows developer forum
Topic: Adding a simple script to a menu - any menu! (2024.2.0.3184)
Replies: 10
Views: 1683

Re: Adding a simple script to a menu - any menu! (2024.2.0.3184)

I will try to send you a separate "link" for the "Gem" I have used!
by IanRTaylorUK
Tue Feb 17, 2026 4:27 pm
Forum: MediaMonkey for Windows developer forum
Topic: Adding a simple script to a menu - any menu! (2024.2.0.3184)
Replies: 10
Views: 1683

Re: Adding a simple script to a menu - any menu! (2024.2.0.3184)

And this is the init.js file with a bunch of comments! Please try and hopefully you will see the menu and the pop-up. Apologies if the "text" is not quite right. // 'use strict' forces the browser to catch common coding mistakes [cite: 4] 'use strict'; (function() { /** * Define the action object in ...
by IanRTaylorUK
Tue Feb 17, 2026 4:25 pm
Forum: MediaMonkey for Windows developer forum
Topic: Adding a simple script to a menu - any menu! (2024.2.0.3184)
Replies: 10
Views: 1683

Re: Adding a simple script to a menu - any menu! (2024.2.0.3184)

This is the info.json { "id": "JLHAutoTag", "version": "1.0.1", "title": "AutoJLHTag", "description": "Automates and validates music metadata based on JLH's schema.", "author": "JLH", "type": "metadata", "main": "init.js" }
by IanRTaylorUK
Tue Feb 17, 2026 4:24 pm
Forum: MediaMonkey for Windows developer forum
Topic: Adding a simple script to a menu - any menu! (2024.2.0.3184)
Replies: 10
Views: 1683

Re: Adding a simple script to a menu - any menu! (2024.2.0.3184)

This is a README.MD # AutoJLHTag (MediaMonkey 5 Add-on) **Author:** JLH **Version:** 1.0.1 **Type:** Metadata Add-on ## Description This add-on automates and validates music metadata based on specific JLH schema rules. It adds a custom command to the "Edit Tags" submenu in MediaMonkey 5. ## Manual ...
by IanRTaylorUK
Mon Feb 16, 2026 12:25 pm
Forum: MediaMonkey for Windows developer forum
Topic: SQL Lite help
Replies: 2
Views: 762

Re: SQL Lite help

Have you tried any of the following: 1). Manual Rescan (Files > Add / Rescan) 2). F5 Refresh (current view) 3). DB / Tag Mismatch 4). Unsynchronised Tags Node My feeling is you should also "UPDATE" the TrackModified field with something like: TrackModified = julianday('now') - 2415018.5 This will ...