05-31-2019, 06:34 PM
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.
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'"