youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9131bde941c49482affe9b10dd26eb187e073b79
parent 1132c10dc24e7063db73e1f6f57c08d138072c36
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Tue,  4 Jun 2013 19:31:06 +0200

SpiegelE: the page layout has changed a bit

Diffstat:
Myoutube_dl/InfoExtractors.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -3980,7 +3980,7 @@ class SpiegelIE(InfoExtractor): video_id = m.group('videoID') webpage = self._download_webpage(url, video_id) - m = re.search(r'<div class="spVideoTitle">(.*?)</div>', webpage) + m = re.search(r'<div class="module-title">(.*?)</div>', webpage) if not m: raise ExtractorError(u'Cannot find title') video_title = unescapeHTML(m.group(1))