You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yt-dlp/yt_dlp/extractor/unsupported.py

134 lines
4.2 KiB
Python

from .common import InfoExtractor
from ..utils import ExtractorError, classproperty, remove_start
class UnsupportedInfoExtractor(InfoExtractor):
IE_DESC = False
URLS = () # Redefine in subclasses
@classproperty
def IE_NAME(cls):
return remove_start(super().IE_NAME, 'Known')
@classproperty
def _VALID_URL(cls):
return rf'https?://(?:www\.)?(?:{"|".join(cls.URLS)})'
LF = '\n '
class KnownDRMIE(UnsupportedInfoExtractor):
"""Sites that are known to use DRM for all their videos
Add to this list only if:
* You are reasonably certain that the site uses DRM for ALL their videos
* Multiple users have asked about this site on github/reddit/discord
"""
URLS = (
r'play\.hbomax\.com',
r'channel(?:4|5)\.com',
r'peacocktv\.com',
r'(?:[\w\.]+\.)?disneyplus\.com',
r'open\.spotify\.com/(?:track|playlist|album|artist)',
r'tvnz\.co\.nz',
r'oneplus\.ch',
r'artstation\.com/learning/courses',
r'philo\.com',
r'(?:[\w\.]+\.)?mech-plus\.com',
r'aha\.video',
r'mubi\.com',
r'vootkids\.com'
)
_TESTS = [{
# https://github.com/yt-dlp/yt-dlp/issues/4309
'url': 'https://www.peacocktv.com',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/1719,
'url': 'https://www.channel4.com',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/1548
'url': 'https://www.channel5.com',
'only_matching': True,
}, {
'url': r'https://hsesn.apps.disneyplus.com',
'only_matching': True,
}, {
'url': r'https://www.disneyplus.com',
'only_matching': True,
}, {
'url': 'https://open.spotify.com/artist/',
'only_matching': True,
}, {
'url': 'https://open.spotify.com/track/',
'only_matching': True,
}, {
# TVNZ: https://github.com/yt-dlp/yt-dlp/issues/4122
'url': 'https://tvnz.co.nz',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/1922
'url': 'https://www.oneplus.ch',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/1140
'url': 'https://www.artstation.com/learning/courses/',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/3544
'url': 'https://www.philo.com',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/3533
'url': 'https://www.mech-plus.com/',
'only_matching': True,
}, {
'url': 'https://watch.mech-plus.com/',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/2934
'url': 'https://www.aha.video',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/2743
'url': 'https://mubi.com',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/3287
'url': 'https://www.vootkids.com',
'only_matching': True,
}]
def _real_extract(self, url):
raise ExtractorError(
f'The requested site is known to use DRM protection. '
f'It will {self._downloader._format_err("NOT", self._downloader.Styles.EMPHASIS)} be supported.{LF}'
f'Please {self._downloader._format_err("DO NOT", self._downloader.Styles.ERROR)} open an issue, '
'unless you have evidence that the video is not DRM protected', expected=True)
class KnownPiracyIE(UnsupportedInfoExtractor):
"""Sites that have been deemed to be piracy
In order for this to not end up being a catalog of piracy sites,
only sites that were once supported should be added to this list
"""
URLS = (
r'dood\.(?:to|watch|so|pm|wf|ru)',
)
_TESTS = [{
'url': 'http://dood.to/e/5s1wmbdacezb',
'only_matching': True,
}]
def _real_extract(self, url):
raise ExtractorError(
f'This website is no longer supported since it has been determined to be primarily used for piracy.{LF}'
f'{self._downloader._format_err("DO NOT", self._downloader.Styles.ERROR)} open issues for it', expected=True)