Skip to content

Commit

Permalink
[cleanup] Remove dead extractors (yt-dlp#8604)
Browse files Browse the repository at this point in the history
Closes yt-dlp#1609, Closes yt-dlp#3232, Closes yt-dlp#4763, Closes yt-dlp#6026, Closes yt-dlp#6322, Closes yt-dlp#7912
Authored by: seproDev
  • Loading branch information
seproDev authored Nov 26, 2023
1 parent 5a23023 commit 9751a45
Show file tree
Hide file tree
Showing 125 changed files with 129 additions and 10,150 deletions.
156 changes: 2 additions & 154 deletions yt_dlp/extractor/_extractors.py

Large diffs are not rendered by default.

63 changes: 0 additions & 63 deletions yt_dlp/extractor/airmozilla.py

This file was deleted.

1 change: 1 addition & 0 deletions yt_dlp/extractor/aol.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


class AolIE(YahooIE): # XXX: Do not subclass from concrete IE
_WORKING = False
IE_NAME = 'aol.com'
_VALID_URL = r'(?:aol-video:|https?://(?:www\.)?aol\.(?:com|ca|co\.uk|de|jp)/video/(?:[^/]+/)*)(?P<id>\d{9}|[0-9a-f]{24}|[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12})'

Expand Down
53 changes: 0 additions & 53 deletions yt_dlp/extractor/atttechchannel.py

This file was deleted.

1 change: 1 addition & 0 deletions yt_dlp/extractor/behindkink.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


class BehindKinkIE(InfoExtractor):
_WORKING = False
_VALID_URL = r'https?://(?:www\.)?behindkink\.com/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<day>[0-9]{2})/(?P<id>[^/#?_]+)'
_TEST = {
'url': 'http://www.behindkink.com/2014/12/05/what-are-you-passionate-about-marley-blaze/',
Expand Down
3 changes: 1 addition & 2 deletions yt_dlp/extractor/bet.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from .mtv import MTVServicesInfoExtractor
from ..utils import unified_strdate

# TODO Remove - Reason: Outdated Site


class BetIE(MTVServicesInfoExtractor):
_WORKING = False
_VALID_URL = r'https?://(?:www\.)?bet\.com/(?:[^/]+/)+(?P<id>.+?)\.html'
_TESTS = [
{
Expand Down
1 change: 1 addition & 0 deletions yt_dlp/extractor/bfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class BFIPlayerIE(InfoExtractor):
_WORKING = False
IE_NAME = 'bfi:player'
_VALID_URL = r'https?://player\.bfi\.org\.uk/[^/]+/film/watch-(?P<id>[\w-]+)-online'
_TEST = {
Expand Down
110 changes: 0 additions & 110 deletions yt_dlp/extractor/biqle.py

This file was deleted.

58 changes: 0 additions & 58 deletions yt_dlp/extractor/bitwave.py

This file was deleted.

4 changes: 1 addition & 3 deletions yt_dlp/extractor/bleacherreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BleacherReportIE(InfoExtractor):
'upload_date': '20150615',
'uploader': 'Team Stream Now ',
},
'add_ie': ['Ooyala'],
'skip': 'Video removed',
}, {
'url': 'http://bleacherreport.com/articles/2586817-aussie-golfers-get-fright-of-their-lives-after-being-chased-by-angry-kangaroo',
'md5': '6a5cd403418c7b01719248ca97fb0692',
Expand Down Expand Up @@ -70,8 +70,6 @@ def _real_extract(self, url):
video_type = video['type']
if video_type in ('cms.bleacherreport.com', 'vid.bleacherreport.com'):
info['url'] = 'http://bleacherreport.com/video_embed?id=%s' % video['id']
elif video_type == 'ooyala.com':
info['url'] = 'ooyala:%s' % video['id']
elif video_type == 'youtube.com':
info['url'] = video['id']
elif video_type == 'vine.co':
Expand Down
Loading

0 comments on commit 9751a45

Please sign in to comment.