Reply to thread

An improved caching system for images would definately help.  But this trick has to do with loading the images from the disk.  The bottleneck here was the time it took to load the image into memory.  The rendering of the images didnt seem to slow it down much.


I myself did other tweaks to the code for additional boost.  All my mp3's are stored in folders as follows: <Genre>\<Artist - Album>\<Track> - <Title>.mp3.  I took all my folder.jpg images and renamed to "<Artist - Album>.jpg" and put these album images on my ram  drive.  I changed the code in MP's GetCoverArt function so that it first looks in my ramdrive directory for "<Artist - Album>.jpg".  If that is found, then just display it.  The trick here was not to look for a folder.jpg on the directories corresponding to the mp3 file, but rather look for "<Artist - Album>.jpg" on one specific directory (this being a directory on my ramdrive).


Top Bottom