|
|
@ -3787,10 +3787,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|
|
|
return self.playlist_result(
|
|
|
|
return self.playlist_result(
|
|
|
|
entries, video_id, video_title, video_description)
|
|
|
|
entries, video_id, video_title, video_description)
|
|
|
|
|
|
|
|
|
|
|
|
duration = int_or_none(
|
|
|
|
duration = (int_or_none(get_first(video_details, 'lengthSeconds'))
|
|
|
|
get_first(video_details, 'lengthSeconds')
|
|
|
|
or int_or_none(get_first(microformats, 'lengthSeconds'))
|
|
|
|
or get_first(microformats, 'lengthSeconds')
|
|
|
|
or parse_duration(search_meta('duration')) or None)
|
|
|
|
or parse_duration(search_meta('duration'))) or None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
live_broadcast_details, live_status, streaming_data, formats, automatic_captions = \
|
|
|
|
live_broadcast_details, live_status, streaming_data, formats, automatic_captions = \
|
|
|
|
self._list_formats(video_id, microformats, video_details, player_responses, player_url, duration)
|
|
|
|
self._list_formats(video_id, microformats, video_details, player_responses, player_url, duration)
|
|
|
|