[vlma-devel] commit: Watchdog: enable RTSP and assume VLC is in $PATH. (Adrien Grand )

git version control git at videolan.org
Mon Nov 10 01:17:42 CET 2008


vlma | branch: master | Adrien Grand <jpountz at videolan.org> | Sun Nov  9 22:25:57 2008 +0100| [8f0f06345ccedb86f7ea4d9902d6c083fb3c3cae] | committer: Adrien Grand 

Watchdog: enable RTSP and assume VLC is in $PATH.

> http://git.videolan.org/gitweb.cgi/vlma.git/?a=commit;h=8f0f06345ccedb86f7ea4d9902d6c083fb3c3cae
---

 vlma-watchdog/src/conf.py |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/vlma-watchdog/src/conf.py b/vlma-watchdog/src/conf.py
index 7f124dc..b6ae792 100644
--- a/vlma-watchdog/src/conf.py
+++ b/vlma-watchdog/src/conf.py
@@ -3,9 +3,11 @@
 
 LOG_LEVEL = 20
 
-VLC_EXE = "/usr/bin/vlc"
+# Name of the VLC executable (give the full path if vlc is not
+# available in the PATH environment variable)
+VLC_EXE = "vlc"
 VLC_LOGS = "vlc.log"
-VLC_ARGS  = "--color -vvv --intf telnet --extraintf logger --logfile %s --logmode text" %(VLC_LOGS)
+VLC_ARGS  = "--color -vvv --ignore-config --rtsp-host 0.0.0.0:5554 --intf telnet --extraintf logger --logfile %s --logmode text" %(VLC_LOGS)
 
 CPU_LOAD_THRESHOLD = 6.0
 VLC_CPU_THRESHOLD  = 80.0
@@ -13,6 +15,7 @@ VLC_MEMORY_THRESHOLD = 80.0
 
 NETWORK_INTERFACE = "eth0"
 
+# HTTP interface exposed by this script
 SERVER_PORT = 4213
 SERVER_LOGIN = "videolan"
 SERVER_PASSWORD = "admin"



More information about the vlma-devel mailing list