Moode Forum
UPNP volume setting - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7)
+--- Thread: UPNP volume setting (/showthread.php?tid=45)

Pages: 1 2


RE: UPNP volume setting - Tim Curtis - 05-05-2019

It never got any priority on the TODO list to make it an option in the UI. Unfortunately it can't be enabled as a default because it can cause issues with updating the normal moOde/MPD volume when multiple clients are connected. It's strictly for UPnP-only environments

Here are the new settings

Code:
# DEFAULT
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'"

# QUERY THE VALUE
sqlite3 /var/local/www/db/moode-sqlite3.db "select value from cfg_system where param='feat_bitmask'"



RE: UPNP volume setting - headburger - 05-05-2019

Thanks Tim, that did the trick as always!

I can confirm that UPNP volume control and display now works perfectly in both directions under Moode 5.1 with those settings.