youtube-dl

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

commit c1708b89c09d7288213110fba859f4c5e0339c31
parent 83fddfd493ffcbb7256f0f1a467cc48ca2191090
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 30 Jan 2015 03:45:29 +0100

[youtube:truncated_url] Add hl= forms (#4799)

Diffstat:
Myoutube_dl/extractor/youtube.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1688,6 +1688,7 @@ class YoutubeTruncatedURLIE(InfoExtractor): feature=[a-z_]+| annotation_id=annotation_[^&]+| x-yt-cl=[0-9]+| + hl=[^&]*| )? | attribution_link\?a=[^&]+ @@ -1707,6 +1708,9 @@ class YoutubeTruncatedURLIE(InfoExtractor): }, { 'url': 'https://www.youtube.com/watch?feature=foo', 'only_matching': True, + }, { + 'url': 'https://www.youtube.com/watch?hl=en-GB', + 'only_matching': True, }] def _real_extract(self, url):