aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-08-25 09:11:23 +0100
committerRemita Amine <remitamine@gmail.com>2016-08-25 09:11:23 +0100
commitf70e9229e623eb041ad514605ceca484b176b850 (patch)
tree4bbabfef066e17e56df9f630d9c859b6108616ce
parent30afe4aeb25576225d3f3ca486983b5ad9258aa0 (diff)
downloadyoutube-dl-f70e9229e623eb041ad514605ceca484b176b850.tar.xz
[discoverygo] detect when video needs authentication(closes #10425)
-rw-r--r--youtube_dl/extractor/discoverygo.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/youtube_dl/extractor/discoverygo.py b/youtube_dl/extractor/discoverygo.py
index cba709935..e86d16d36 100644
--- a/youtube_dl/extractor/discoverygo.py
+++ b/youtube_dl/extractor/discoverygo.py
@@ -7,6 +7,7 @@ from ..utils import (
int_or_none,
parse_age_limit,
unescapeHTML,
+ ExtractorError,
)
@@ -53,7 +54,13 @@ class DiscoveryGoIE(InfoExtractor):
title = video['name']
- stream = video['stream']
+ stream = video.get('stream')
+ if not stream:
+ raise ExtractorError(
+ 'This video is only available via cable service provider subscription that'
+ ' is not currently supported. You may want to use --cookies.'
+ if video.get('authenticated') is True else 'Unable to find stream',
+ expected=True)
STREAM_URL_SUFFIX = 'streamUrl'
formats = []
for stream_kind in ('', 'hds'):