youtube-dl

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

commit c3971870616fb24c298b8f6f1bf1ec7c16c75470
parent e32b06e977447f6be78c02c66f35f609f81331ce
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 16 Mar 2013 23:52:17 +0100

Spiegel: Support hash at end of URL

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 @@ -4097,7 +4097,7 @@ class MySpassIE(InfoExtractor): return [info] class SpiegelIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?spiegel\.de/video/[^/]*-(?P<videoID>[0-9]+)(?:\.html)?$' + _VALID_URL = r'https?://(?:www\.)?spiegel\.de/video/[^/]*-(?P<videoID>[0-9]+)(?:\.html)?(?:#.*)$' def _real_extract(self, url): m = re.match(self._VALID_URL, url)