Increase autotag from 100 to your own custom amount

Help improve MediaMonkey 5 by testing the latest pre-release builds, and reporting bugs and feature requests.

Moderator: Gurus

sohosynergy
Posts: 2
Joined: Tue Mar 16, 2021 4:18 am

Increase autotag from 100 to your own custom amount

Post by sohosynergy »

If you are a registered user of MediaMonkey (Gold version) and you want to increase the autotag from the base 100 to a greater amount, here's the file you need to edit and what inside you need to edit.

First, make sure that MediaMonkey is closed!

The file is called autoTagFramework.js and in windows, it is located in C:\Program Files (x86)\MediaMonkey 5\helpers

Here's what you need to edit:
/**
Add tracks batch to the search engine .. tracks are handled in batches (batch can be a tracks from one folder etc.).

@method addTracks
@return {Promise}
*/
addTracks: function (newTracks, detectTagger) {
return new Promise(function (resolve, reject) {
this._defaults._detectTagger = detectTagger;
if (!newTracks || !newTracks.count) {
reject();
return;
}
newTracks.whenLoaded().then(function () {
var batchSize = 500;

Initially var batchSize = should say 100, change it to whatever you wish, but keep in mind you don't want to set it too high as you pc might crash if it can't handle the load. I am on a AMD Ryzen 3700 with 32 gigs ram and at 500 it works fine!

Hope this helps.