diff options
Diffstat (limited to 'src/webvicli')
| -rw-r--r-- | src/webvicli/webvicli/client.py | 4 |
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: |
