diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-09-14 00:26:12 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-09-14 00:26:54 +0200 |
commit | 287be8c615574f90f4fac5adad0b32b3102f621e (patch) | |
tree | f8bfff211cf28da05cc3d7e06cc85adc2fa7e44f /youtube_dl/extractor | |
parent | 953fed280f1a35bc6e8a701a25b8450ec08efdd3 (diff) |
[youtube:truncated_url] Add ?t=
Sometimes found in links - ?t=123&v=ABCD starts the video at position 123.
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 97ce36550..abacdfaed 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1970,6 +1970,7 @@ class YoutubeTruncatedURLIE(InfoExtractor): annotation_id=annotation_[^&]+| x-yt-cl=[0-9]+| hl=[^&]*| + t=[0-9]+ )? | attribution_link\?a=[^&]+ @@ -1992,6 +1993,9 @@ class YoutubeTruncatedURLIE(InfoExtractor): }, { 'url': 'https://www.youtube.com/watch?hl=en-GB', 'only_matching': True, + }, { + 'url': 'https://www.youtube.com/watch?t=2372', + 'only_matching': True, }] def _real_extract(self, url): |