youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7b3a19e5339344037a872574780c39f334cea90e
parent 4f13f8f798be06bc2b3c0c42818bb0785e4cde64
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 25 Oct 2015 23:17:23 +0600

[stitcher] Remove origEpisodeURL

It's always 404

Diffstat:
Myoutube_dl/extractor/stitcher.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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*</span>([^<]+)<', webpage, 'description', fatal=False) duration = int_or_none(episode.get('duration'))