mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	[extractor/BiliIntl] Fix subtitle extraction
Closes #3123 Authored by: HobbyistDev
This commit is contained in:
		| @@ -789,7 +789,8 @@ class BiliIntlBaseIE(InfoExtractor): | ||||
|     def json2srt(self, json): | ||||
|         data = '\n\n'.join( | ||||
|             f'{i + 1}\n{srt_subtitles_timecode(line["from"])} --> {srt_subtitles_timecode(line["to"])}\n{line["content"]}' | ||||
|             for i, line in enumerate(json['body']) if line.get('content')) | ||||
|             for i, line in enumerate(traverse_obj(json, ( | ||||
|                 'body', lambda _, l: l['content'] and l['from'] and l['to'])))) | ||||
|         return data | ||||
| 
 | ||||
|     def _get_subtitles(self, *, ep_id=None, aid=None): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan