what is MM doing to my CPU?
Moderator: Gurus
what is MM doing to my CPU?
I've had MM 2.4 for a couple of days and I love it, I've been re-organizing my entire music collection and setting all up to trash itunes and use my ipod with MM. However, there's one thing that bothers me plenty. Even when I'm not listening to music, MM is doing something to my CPU which needs constant ventilation (I'm on a laptop). When I check the task manager it says MM is using around 95% of my CPU power. When I close the program the computer calms down. What could this be? If it serves as a hint, there is a message on MM which says "Now Playing: reading tracks..." at the bottom of the screen all the time. Heeeelp!!!!!!! I don't want to go back to iTunes!!!!
OK so I've searched through old topics and it seems my problem comes from an extremeley large "now playing" list at startup. How do I fix the problem? I've loaded a smaller list, closed down MM, but first, he CPU problem continues because MM keeps running in the background, so finish the process through task manager and when I restart MM the old "Now playing" list is there again and the problem continues...
OK I'll answer my own post in case anyone runs into the same problem... Just reloaded MM and changed the Now Playing list as quickly as possible, before it begins compiling those tracks. That solved the problem. Thanks for your help! (seriously, to those who addressed this issue in previous threads)
Here is one simple script that will Clear 'Now Playing' Before Every start of MM.
'ClearNowPlaying.vbs'
Save this script in 'Scripts\Auto' folder Of MM and on every MM restart NowPlaying will be Empty.
BTW same Topic as http://www.mediamonkey.com/forum/viewto ... highlight=
'ClearNowPlaying.vbs'
Code: Select all
sub OnStartup
SDB.Player.PlaylistClear
End Sub
BTW same Topic as http://www.mediamonkey.com/forum/viewto ... highlight=
Best regards,
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
Can any script guru (Peke?) please indicate how this script must be extended in order to clear the Now Playing playlist only if more than <number> tracks are included in the Now Playing playlist.
With such an extension a small Now Playing playlist could be maintained and only a huge Now Playing playlist which takes a lot of time to be read would be cleared.
Thanks a lot in advance
Dieter
With such an extension a small Now Playing playlist could be maintained and only a huge Now Playing playlist which takes a lot of time to be read would be cleared.
Thanks a lot in advance
Dieter
Code: Select all
sub OnStartup
If ( SDB.Player.PlaylistCount > 100 ) Then
SDB.Player.PlaylistClear
End If
End Sub
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
My pleasure! 

Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
This script is growing here: http://www.mediamonkey.com/forum/viewtopic.php?p=28626
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.