summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-11-24 15:28:33 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-11-24 15:28:50 +0100
commit6d88bc37a32d5d624c09d68cd19e64e6095fa5de (patch)
treeb04d88d95e37aec2e15fc2c66f21c3472d99c72f
parentb7553b25543175c27c885b0c6ab77d91b270a520 (diff)
[viki] Skip travis test
Also provide a better error message for geoblocked videos.
-rw-r--r--youtube_dl/extractor/viki.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py
index 8088dcf0b1..7b3a58de8e 100644
--- a/youtube_dl/extractor/viki.py
+++ b/youtube_dl/extractor/viki.py
@@ -1,6 +1,7 @@
import re
from ..utils import (
+ ExtractorError,
unified_strdate,
)
from .subtitles import SubtitlesInfoExtractor
@@ -20,7 +21,8 @@ class VikiIE(SubtitlesInfoExtractor):
u'description': u'md5:c4b17b9626dd4b143dcc4d855ba3474e',
u'upload_date': u'20131121',
u'age_limit': 13,
- }
+ },
+ u'skip': u'Blocked in the US',
}
def _real_extract(self, url):
@@ -53,6 +55,10 @@ class VikiIE(SubtitlesInfoExtractor):
info_url = 'http://www.viki.com/player5_fragment/%s?action=show&controller=videos' % video_id
info_webpage = self._download_webpage(
info_url, video_id, note=u'Downloading info page')
+ if re.match(r'\s*<div\s+class="video-error', info_webpage):
+ raise ExtractorError(
+ u'Video %s is blocked from your location.' % video_id,
+ expected=True)
video_url = self._html_search_regex(
r'<source[^>]+src="([^"]+)"', info_webpage, u'video URL')