06-01-2019, 03:43 PM
(05-31-2019, 06:34 PM)Tim Curtis Wrote: moOde maintains the MPD/knob volume level in a SQL table for maximum reliability. If MPD volume is changed external to moOde then the two will be different.
There is an undocumented feature called UPnP Volume Sync that will sync up the moOde knob to MPD volume. Run the cmd below to try it out.
Code:# Default value
sqlite3 /var/local/www/db/moode-sqlite3.db "UPDATE cfg_system SET value='7102' WHERE param='feat_bitmask'"
# Enable UPnP Volume Sync
sqlite3 /var/local/www/db/moode-sqlite3.db "UPDATE cfg_system SET value='8126' WHERE param='feat_bitmask'"
# Print the value
sqlite3 /var/local/www/db/moode-sqlite3.db "SELECT value FROM cfg_system WHERE param='feat_bitmask'"
Thank you very much, Tim! This works beautifully. I've upgraded to 5.3 and made a new donation to you and your team.