Increase autotag from 100 to your own custom amount

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: Increase autotag from 100 to your own custom amount

Increase autotag from 100 to your own custom amount

by sohosynergy » Sat Aug 14, 2021 12:26 am

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.

Top