瀏覽代碼

[youtube:truncated_url] Add ?t=

Sometimes found in links - ?t=123&v=ABCD starts the video at position 123.
Philipp Hagemeister 10 年之前
父節點
當前提交
287be8c615
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      youtube_dl/extractor/youtube.py

+ 4 - 0
youtube_dl/extractor/youtube.py

@@ -1970,6 +1970,7 @@ class YoutubeTruncatedURLIE(InfoExtractor):
             annotation_id=annotation_[^&]+|
             annotation_id=annotation_[^&]+|
             x-yt-cl=[0-9]+|
             x-yt-cl=[0-9]+|
             hl=[^&]*|
             hl=[^&]*|
+            t=[0-9]+
         )?
         )?
         |
         |
             attribution_link\?a=[^&]+
             attribution_link\?a=[^&]+
@@ -1992,6 +1993,9 @@ class YoutubeTruncatedURLIE(InfoExtractor):
     }, {
     }, {
         'url': 'https://www.youtube.com/watch?hl=en-GB',
         'url': 'https://www.youtube.com/watch?hl=en-GB',
         'only_matching': True,
         'only_matching': True,
+    }, {
+        'url': 'https://www.youtube.com/watch?t=2372',
+        'only_matching': True,
     }]
     }]
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):