youtube-dl

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

commit e31fed95b4b3026c34cec85c38c89b9b5c98b3d6
parent 3fd0f70f6a1107a217f5c4c860ae180a6daf1ab6
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Fri, 28 Apr 2017 15:47:26 +0800

[youtube] Recognize new locale-based player URLs (fixes #12885)

Diffstat:
MChangeLog | 6++++++
Myoutube_dl/extractor/youtube.py | 2+-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,9 @@ +version <unreleased> + +Extractor +* [youtube] Recognize new locale-based player URLs (#12885) + + version 2017.04.26 Core diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -963,7 +963,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): def _extract_signature_function(self, video_id, player_url, example_sig): id_m = re.match( - r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player(?:-new)?|/base)?\.(?P<ext>[a-z]+)$', + r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player(?:-new)?|(?:/[a-z]{2}_[A-Z]{2})?/base)?\.(?P<ext>[a-z]+)$', player_url) if not id_m: raise ExtractorError('Cannot identify player %r' % player_url)