Browse Source

[stitcher] Remove origEpisodeURL

It's always 404
totalwebcasting
Sergey M․ 9 years ago
parent
commit
7b3a19e533
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/stitcher.py

+ 1
- 1
youtube_dl/extractor/stitcher.py View File

@ -64,7 +64,7 @@ class StitcherIE(InfoExtractor):
'url': episode[episode_key],
'ext': determine_ext(episode[episode_key]) or 'mp3',
'vcodec': 'none',
} for episode_key in ('origEpisodeURL', 'episodeURL') if episode.get(episode_key)]
} for episode_key in ('episodeURL',) if episode.get(episode_key)]
description = self._search_regex(
r'Episode Info:\s*</span>([^<]+)<', webpage, 'description', fatal=False)
duration = int_or_none(episode.get('duration'))


Loading…
Cancel
Save