Skip to content

Commit

Permalink
[ie/unsupported] List more sites with DRM
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed Jul 22, 2023
1 parent 62b5c94 commit e705738
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions yt_dlp/extractor/unsupported.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ class KnownDRMIE(UnsupportedInfoExtractor):
r'vootkids\.com',
r'nowtv\.it/watch',
r'tv\.apple\.com',
r'primevideo\.com',
r'hulu\.com',
r'resource\.inkryptvideos\.com',
r'joyn\.de',
r'amazon\.(?:\w{2}\.)?\w+/gp/video',
r'music\.amazon\.(?:\w{2}\.)?\w+',
)

_TESTS = [{
Expand Down Expand Up @@ -111,6 +117,30 @@ class KnownDRMIE(UnsupportedInfoExtractor):
# https://github.com/yt-dlp/yt-dlp/issues/5557
'url': 'https://tv.apple.com/it/show/loot---una-fortuna/umc.cmc.5erbujil1mpazuerhr1udnk45?ctx_brand=tvs.sbd.4000',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/3072
'url': 'https://www.joyn.de/play/serien/clannad/1-1-wo-die-kirschblueten-fallen',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/7323
'url': 'https://music.amazon.co.jp/albums/B088Y368TK',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/7323
'url': 'https://www.amazon.co.jp/gp/video/detail/B09X5HBYRS/',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/6125
'url': 'https://www.primevideo.com/region/eu/detail/0H3DDB4KBJFNDCKKLHNRLRLVKQ/ref=atv_br_def_r_br_c_unkc_1_10',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/5740
'url': 'https://resource.inkryptvideos.com/v2-a83ns52/iframe/index.html#video_id=7999ea0f6e03439eb40d056258c2d736&otp=xxx',
'only_matching': True,
}, {
# https://github.com/yt-dlp/yt-dlp/issues/5767
'url': 'https://www.hulu.com/movie/anthem-6b25fac9-da2b-45a3-8e09-e4156b0471cc',
'only_matching': True,
}]

def _real_extract(self, url):
Expand Down

0 comments on commit e705738

Please sign in to comment.