-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ceb58b
commit 4281677
Showing
4 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Changelog | ||
|
||
## 0.1.4 | ||
- Changed S6 service run file | ||
|
||
## 0.1.3 | ||
- Bump Live555 ProxyServer to version 2019.05.29 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
#!/usr/bin/with-contenv bash | ||
#!/usr/bin/with-contenv bashio | ||
# ============================================================================== | ||
# SmartHouse Hass.io Add-ons: Live555 RTSP Proxy Server | ||
# Runs the Live555 RTSP Proxy Server | ||
# ============================================================================== | ||
source /usr/lib/hassio-addons/base.sh | ||
|
||
LOG_LEVEL=$(bashio::config 'log_level') | ||
CONFIG_PATH=/data/options.json | ||
STREAMS=$(jq --raw-output ".streams[]" $CONFIG_PATH) | ||
|
||
# Run the Live555 RTSP Proxy Server | ||
hass.log.info "Starting Live555 RTSP Proxy Server..." | ||
export LOG_LEVEL | ||
|
||
bashio::log.info "Starting Live555 RTSP Proxy Server..." | ||
exec live555ProxyServer ${STREAMS[*]} |