Browse Source

[spiegel] Fix extraction (Closes #7693)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
bf2c8c8f82
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/spiegel.py

+ 2
- 1
youtube_dl/extractor/spiegel.py View File

@ -58,7 +58,8 @@ class SpiegelIE(InfoExtractor):
description = self._html_search_meta('description', webpage, 'description')
base_url = self._search_regex(
r'var\s+server\s*=\s*"([^"]+)\"', webpage, 'server URL')
[r'server\s*:\s*(["\'])(?P<url>.+?)\1', r'var\s+server\s*=\s*"(?P<url>[^"]+)\"'],
webpage, 'server URL', group='url')
xml_url = base_url + video_id + '.xml'
idoc = self._download_xml(xml_url, video_id)


Loading…
Cancel
Save