summaryrefslogtreecommitdiff
path: root/src/webvicli
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2010-11-06 10:56:55 +0200
committerAntti Ajanki <antti.ajanki@iki.fi>2010-11-06 10:56:55 +0200
commit0975d8aa6cd8655c94661987a9ee03e11e0330d5 (patch)
tree380b382feae7802669481bd67e7df8aff6a787cf /src/webvicli
parent04c364be7443c17866a20fbb92458e3f5f1a9f82 (diff)
downloadvdr-plugin-webvideo-0975d8aa6cd8655c94661987a9ee03e11e0330d5.tar.gz
vdr-plugin-webvideo-0975d8aa6cd8655c94661987a9ee03e11e0330d5.tar.bz2
Better error message when trying to stream rtmp video
Diffstat (limited to 'src/webvicli')
-rw-r--r--src/webvicli/webvicli/client.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py
index 6618ec3..c1fd1d1 100644
--- a/src/webvicli/webvicli/client.py
+++ b/src/webvicli/webvicli/client.py
@@ -437,6 +437,10 @@ class WVClient:
print 'Did not find URL'
return False
+ if streamurl.startswith('wvt://'):
+ print 'Streaming not supported, try downloading'
+ return False
+
# Found url, now find a working media player
for player in self.streamplayers:
if '%s' not in player: