From: Sergey M․ Date: Sun, 25 Oct 2015 17:17:23 +0000 (+0600) Subject: [stitcher] Remove origEpisodeURL X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=7b3a19e5339344037a872574780c39f334cea90e;p=youtube-dl [stitcher] Remove origEpisodeURL It's always 404 --- diff --git a/youtube_dl/extractor/stitcher.py b/youtube_dl/extractor/stitcher.py index 971a1c466..d5c852f52 100644 --- a/youtube_dl/extractor/stitcher.py +++ b/youtube_dl/extractor/stitcher.py @@ -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*([^<]+)<', webpage, 'description', fatal=False) duration = int_or_none(episode.get('duration'))