03-09-2025, 04:22 PM
@skr91
As a rough and ready estimate of the time expected for moOde to update the libary from a remote NAS containing ca 5000 albums, I just did a test on a smaller scale here.
moOde 9.2.6 on an RPi 3A+ connected to my LAN via 5 GHz WiFi and located a long way from the LAN access point.
OMV 7.6 on an RPi 5B with SSD on a PCIe interface and connected to my LAN via Ethernet.
The SSD contains 8035 tracks by 754 artists, organized in 543 albums. There is cover art associated with most albums and embedded in many tracks. (Actually, I scanned the whole library which includes the Stereo test track included in moOde, so my counts are probably off by 1 or so.)
It took moOde/MPD about 6-1/2 minutes to update the library.
Since you have roughly ten times the number of albums one might reasonably expect it to take 10 * 6-1/2 minutes or something over an hour to complete at a minimum. I don't know how much longer to expect with an HD and USB 2.0 interface.
You can track the progress of the update from the terminal of your moOde player with the command
Here, for example, is what I see in the setup I cited above
and it continues ad nauseum until the update is complete.
You can check its statistics with an mpc command from the terminal. Continuing with my example:
You can see what moOde was doing during the update by looking at /var/log/moode.log
For example, here's what I see for the above library update operation
Regards,
Kent
As a rough and ready estimate of the time expected for moOde to update the libary from a remote NAS containing ca 5000 albums, I just did a test on a smaller scale here.
moOde 9.2.6 on an RPi 3A+ connected to my LAN via 5 GHz WiFi and located a long way from the LAN access point.
OMV 7.6 on an RPi 5B with SSD on a PCIe interface and connected to my LAN via Ethernet.
The SSD contains 8035 tracks by 754 artists, organized in 543 albums. There is cover art associated with most albums and embedded in many tracks. (Actually, I scanned the whole library which includes the Stereo test track included in moOde, so my counts are probably off by 1 or so.)
It took moOde/MPD about 6-1/2 minutes to update the library.
Since you have roughly ten times the number of albums one might reasonably expect it to take 10 * 6-1/2 minutes or something over an hour to complete at a minimum. I don't know how much longer to expect with an HD and USB 2.0 interface.
You can track the progress of the update from the terminal of your moOde player with the command
Code:
tail -f /var/log/mpd/log
Here, for example, is what I see in the setup I cited above
Code:
rho@moodey:~ $ tail -f /var/log/mpd/log
Mar 09 10:19 : update: added NAS/OMV1-Music1/World/Ravi Shankar/In London/03 Ravi Shankar - Raga Ramkali.flac
Mar 09 10:19 : update: added NAS/OMV1-Music1/World/Ravi Shankar/In London/01 Ravi Shankar - Raga Hamsadhwani.flac
Mar 09 10:19 : update: added NAS/OMV1-Music1/World/Ravi Shankar/In London/02 Ravi Shankar - Dhun Kafi.flac
Mar 09 10:19 : update: added NAS/OMV1-Music1/World/Inti-Illimani - John Williams - Paco Peña/Fragments Of A Dream/06 Inti-Illimani - John Williams - Paco Peña - Fragmentos De Un Sueno.flac
...
and it continues ad nauseum until the update is complete.
You can check its statistics with an mpc command from the terminal. Continuing with my example:
Code:
rho@moodey:~ $ mpc stats
Artists: 754
Albums: 543
Songs: 6035
Play Time: 0 days, 2:12:45
Uptime: 0 days, 2:12:47
DB Updated: Sun Mar 9 09:24:51 2025
DB Play Time: 21 days, 13:42:34
You can see what moOde was doing during the update by looking at /var/log/moode.log
For example, here's what I see for the above library update operation
Code:
rho@moodey:~ $ cat /var/log/moode.log
...
20250309 101905 worker: Job update_library
20250309 101905 mpdindex: Start
20250309 101905 mpdindex: Cmd (update)
20250309 101906 thumb-gen: Start
20250309 101906 thumb-gen: Scan opt: Default
20250309 101906 thumb-gen: Priority: Embedded cover
20250309 101906 thumb-gen: Res,Qual: 600px,60
20250309 101906 thumb-gen: Px ratio: 1
20250309 101906 thumb-gen: Th width: 600
20250309 101906 thumb-gen: Thm qual: 60
20250309 101906 thumb-gen: Scanning: NAS, NVME, SATA, SDCARD
20250309 102333 thumb-gen: Error: File does not contain ID3v2 tag of supported version: v2.2: NAS/OMV1-Music1/James and the Giant Peach Album/20 Everywhere That You Are (Megan Hilty).mp3
20250309 102428 thumb-gen: Done: 541 folders scanned, 538 thumbs created, 3 already in cache.
20250309 102524 mpdindex: Done: indexed 754 artists, 543 albums, 6035 songs
20250309 102524 worker: Job update_library done
...
Regards,
Kent