mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[limelight] Extract ttml subtitles (Closes #9739)
This commit is contained in:
		| @@ -102,9 +102,15 @@ class LimelightBaseIE(InfoExtractor): | |||||||
|             lang = caption.get('language_code') |             lang = caption.get('language_code') | ||||||
|             subtitles_url = caption.get('url') |             subtitles_url = caption.get('url') | ||||||
|             if lang and subtitles_url: |             if lang and subtitles_url: | ||||||
|                 subtitles[lang] = [{ |                 subtitles.setdefault(lang, []).append({ | ||||||
|                     'url': subtitles_url, |                     'url': subtitles_url, | ||||||
|                 }] |                 }) | ||||||
|  |         closed_captions_url = properties.get('closed_captions_url') | ||||||
|  |         if closed_captions_url: | ||||||
|  |             subtitles.setdefault('en', []).append({ | ||||||
|  |                 'url': closed_captions_url, | ||||||
|  |                 'ext': 'ttml', | ||||||
|  |             }) | ||||||
|  |  | ||||||
|         return { |         return { | ||||||
|             'id': video_id, |             'id': video_id, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user