Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Add option for mpd watchdog (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks committed Jul 17, 2017
1 parent 301ec78 commit 70664a0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mopidy_websettings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@ <h2>MusicBox</h2>
</select>
</div>

<label for="musicbox__enable_stream_watchdog">Stream Watchdog</label>
<p>Monitor and automatically restart internet streams when the network connection is restored following a dropout.</p>
<div>
<select name="musicbox__enable_stream_watchdog" data-role="slider"><br/>
<option value="false"{% if musicbox__enable_stream_watchdog == "false" %} selected="true"{% endif %}>Off</option>
<option value="true"{% if musicbox__enable_stream_watchdog == "true" %} selected="true"{% endif %}>On</option>
</select>
</div>

<label for="musicbox__enable_shairport">AirPlay Streaming</label>
<p>Enable streaming audio to MusicBox from iPhone/iPad/Mac/iPod using ShairPort-Sync (AirPlay).</p>
<div>
Expand Down
1 change: 1 addition & 0 deletions mopidy_websettings/settingsspec.ini
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ downsample_usb = "boolean(default=true)"
output = "string(default='')"
enable_upnp = "boolean(default=false)"
enable_shairport = "boolean(default=false)"
enable_stream_watchdog = "boolean(default=false)"

[audio]
mixer_volume = "float(min=0, max=100, default=85)"
Expand Down

0 comments on commit 70664a0

Please sign in to comment.