mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[stitcher] Remove origEpisodeURL
It's always 404
This commit is contained in:
parent
4f13f8f798
commit
7b3a19e533
@ -64,7 +64,7 @@ def _real_extract(self, url):
|
||||
'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…
Reference in New Issue
Block a user