aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-12-03 21:17:11 +0600
committerSergey M․ <dstftw@gmail.com>2014-12-03 21:17:11 +0600
commitde9bd74bc2e06a6d5396151050fd1eeafdd54a33 (patch)
treeea1b3e0a967c55ee96b70fb79fd11189d8a632ba
parent233d37fb6b420b01315c48488c84dc5b6e7aaea0 (diff)
downloadyoutube-dl-de9bd74bc2e06a6d5396151050fd1eeafdd54a33.tar.xz
[ted] Fix type_watch links extraction
-rw-r--r--youtube_dl/extractor/ted.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py
index f8a87afda..72160503c 100644
--- a/youtube_dl/extractor/ted.py
+++ b/youtube_dl/extractor/ted.py
@@ -199,8 +199,9 @@ class TEDIE(SubtitlesInfoExtractor):
webpage = self._download_webpage(url, name)
config_json = self._html_search_regex(
- r"data-config='([^']+)", webpage, 'config')
- config = json.loads(config_json)
+ r'"pages\.jwplayer"\s*,\s*({.+?})\s*\)\s*</script>',
+ webpage, 'config')
+ config = json.loads(config_json)['config']
video_url = config['video']['url']
thumbnail = config.get('image', {}).get('url')