mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[extractor/youtube] Fix duration for premieres (#5382)
				
					
				
			Closes #5378 Authored by: nosoop
This commit is contained in:
		| @@ -3787,10 +3787,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor): | ||||
|                 return self.playlist_result( | ||||
|                     entries, video_id, video_title, video_description) | ||||
| 
 | ||||
|         duration = int_or_none( | ||||
|             get_first(video_details, 'lengthSeconds') | ||||
|             or get_first(microformats, 'lengthSeconds') | ||||
|             or parse_duration(search_meta('duration'))) or None | ||||
|         duration = (int_or_none(get_first(video_details, 'lengthSeconds')) | ||||
|                     or int_or_none(get_first(microformats, 'lengthSeconds')) | ||||
|                     or parse_duration(search_meta('duration')) or None) | ||||
| 
 | ||||
|         live_broadcast_details, live_status, streaming_data, formats, automatic_captions = \ | ||||
|             self._list_formats(video_id, microformats, video_details, player_responses, player_url, duration) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 nosoop
					nosoop