Browse Source

[dramafever] Streamline code

totalwebcasting
ping 9 years ago
parent
commit
137597b0ea
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      youtube_dl/extractor/dramafever.py

+ 3
- 4
youtube_dl/extractor/dramafever.py View File

@ -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


Loading…
Cancel
Save