diff options
author | marieell <marieell@tuta.io> | 2022-02-11 18:46:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 09:46:29 -0800 |
commit | dca4f462742d64ab82e943c7560d0d9cbc5a9305 (patch) | |
tree | 95a4d63956c9c1b3d89077c71a3af8b85ae65f64 /yt_dlp/extractor/generic.py | |
parent | 5dee3ad037d197d5efb35bac6819d36ba19a9974 (diff) | |
download | hypervideo-pre-dca4f462742d64ab82e943c7560d0d9cbc5a9305.tar.lz hypervideo-pre-dca4f462742d64ab82e943c7560d0d9cbc5a9305.tar.xz hypervideo-pre-dca4f462742d64ab82e943c7560d0d9cbc5a9305.zip |
[cleanup] Remove extractors for some dead websites (#2739)
90tv.ir, HornBunny.com, 220.ro, 5min.com, Kankan.com, Roxwel.com,
FreshLive.tv, TheScene.com, Vube.com
Authored by: marieell
Diffstat (limited to 'yt_dlp/extractor/generic.py')
-rw-r--r-- | yt_dlp/extractor/generic.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index 2b59d076f..f723d1e8c 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -1456,24 +1456,6 @@ class GenericIE(InfoExtractor): 'duration': 45.115, }, }, - # 5min embed - { - 'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/', - 'md5': '4c6f127a30736b59b3e2c19234ee2bf7', - 'info_dict': { - 'id': '518726732', - 'ext': 'mp4', - 'title': 'Facebook Creates "On This Day" | Crunch Report', - 'description': 'Amazon updates Fire TV line, Tesla\'s Model X spotted in the wild', - 'timestamp': 1427237531, - 'uploader': 'Crunch Report', - 'upload_date': '20150324', - }, - 'params': { - # m3u8 download - 'skip_download': True, - }, - }, # Crooks and Liars embed { 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists', @@ -3337,12 +3319,6 @@ class GenericIE(InfoExtractor): if mobj is not None: return self.url_result(mobj.group('url')) - # Look for 5min embeds - mobj = re.search( - r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage) - if mobj is not None: - return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin') - # Look for Crooks and Liars embeds mobj = re.search( r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage) |