Enigma2 plugin to to play various online streams (mostly Latvian).

123456789
  1. #!/bin/sh
  2. DAEMON=/usr/lib/enigma2/python/Plugins/Extensions/PlayStream/streamproxy.py
  3. NAME=streamproxy
  4. DESC="StreamProxy"
  5. test -f $DAEMON || exit 0
  6. /usr/bin/python $DAEMON $1
  7. exit 0