diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 03:07:04 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 03:07:45 +0800 |
commit | a8aad210019b50540cf1bfd28390b7e7f2573a31 (patch) | |
tree | 4cabf3f8510155ea4e03c5961c5980933ae1d0ac /youtube_dl/extractor/acast.py | |
parent | d055bf91ccab5c25956f3d360c3b79ed86ad44b9 (diff) |
[acast] Fix extraction
Diffstat (limited to 'youtube_dl/extractor/acast.py')
-rw-r--r-- | youtube_dl/extractor/acast.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/extractor/acast.py b/youtube_dl/extractor/acast.py index be7913bc7..f2465f8f8 100644 --- a/youtube_dl/extractor/acast.py +++ b/youtube_dl/extractor/acast.py @@ -23,14 +23,19 @@ class ACastIE(ACastBaseIE): 'ext': 'mp3', 'title': '"Where Are You?": Taipei 101, Taiwan', 'timestamp': 1196172000000, - 'description': 'md5:0c5d8201dfea2b93218ea986c91eee6e', + 'description': 'md5:a0b4ef3634e63866b542e5b1199a1a0e', 'duration': 211, } } def _real_extract(self, url): channel, display_id = re.match(self._VALID_URL, url).groups() - cast_data = self._download_json(self._API_BASE_URL + 'channels/%s/acasts/%s/playback' % (channel, display_id), display_id) + + embed_page = self._download_webpage( + re.sub('(?:www\.)?acast\.com', 'embedcdn.acast.com', url), display_id) + cast_data = self._parse_json(self._search_regex( + r'window\[\'acast/queries\'\]\s*=\s*([^;]+);', embed_page, 'acast data'), + display_id)['GetAcast/%s/%s' % (channel, display_id)] return { 'id': compat_str(cast_data['id']), |