mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[youtube] Also look into the 'start' field for start_time
This commit is contained in:
parent
297a564bee
commit
2929fa0e79
|
@ -900,6 +900,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
query = compat_parse_qs(component)
|
query = compat_parse_qs(component)
|
||||||
if start_time is None and 't' in query:
|
if start_time is None and 't' in query:
|
||||||
start_time = parse_duration(query['t'][0])
|
start_time = parse_duration(query['t'][0])
|
||||||
|
if start_time is None and 'start' in query:
|
||||||
|
start_time = parse_duration(query['start'][0])
|
||||||
if end_time is None and 'end' in query:
|
if end_time is None and 'end' in query:
|
||||||
end_time = parse_duration(query['end'][0])
|
end_time = parse_duration(query['end'][0])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue