mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[dramafever] Streamline code
This commit is contained in:
		@@ -80,12 +80,11 @@ class DramaFeverIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
    def _get_subtitles(self, video_id, consumer_secret):
 | 
			
		||||
 | 
			
		||||
        def match_episode(ep):
 | 
			
		||||
            return ep['guid'] == video_id
 | 
			
		||||
 | 
			
		||||
        res = None
 | 
			
		||||
        info = self._get_episodes(
 | 
			
		||||
            video_id.split(".")[0], consumer_secret, episode_filter=match_episode)
 | 
			
		||||
            video_id.split(".")[0], consumer_secret,
 | 
			
		||||
            episode_filter=lambda x: x['guid'] == video_id)
 | 
			
		||||
 | 
			
		||||
        if len(info) == 1 and info[0]['subfile'] != '':
 | 
			
		||||
            res = {'en': [{'url': info[0]['subfile'], 'ext': 'srt'}]}
 | 
			
		||||
        return res
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user