mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-07 17:31:55 +00:00
[cleanup] Misc (#17159)
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.11) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.12) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.13) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.14) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.15) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, pypy-3.11) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.10) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.11) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.12) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.13) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.14) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.15) (push) Has been cancelled
Core Tests / Core tests (windows-latest, pypy-3.11) (push) Has been cancelled
Quick Test / Core test (push) Has been cancelled
Quick Test / Code check (push) Has been cancelled
Release (master) / Publish GitHub release (push) Has been cancelled
Release (master) / Publish to PyPI (push) Has been cancelled
Test and lint workflows / Check workflows (push) Has been cancelled
Test and lint workflows / Run zizmor (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.11) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.12) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.13) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.14) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, 3.15) (push) Has been cancelled
Core Tests / Core tests (ubuntu-latest, pypy-3.11) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.10) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.11) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.12) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.13) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.14) (push) Has been cancelled
Core Tests / Core tests (windows-latest, 3.15) (push) Has been cancelled
Core Tests / Core tests (windows-latest, pypy-3.11) (push) Has been cancelled
Quick Test / Core test (push) Has been cancelled
Quick Test / Code check (push) Has been cancelled
Release (master) / Publish GitHub release (push) Has been cancelled
Release (master) / Publish to PyPI (push) Has been cancelled
Test and lint workflows / Check workflows (push) Has been cancelled
Test and lint workflows / Run zizmor (push) Has been cancelled
Closes #17196, Closes #17385 Authored by: bashonly, dialmaster, gamer191, BOplaid Co-authored-by: Christopher Dial <[email protected]> Co-authored-by: BOplaid <[email protected]> Co-authored-by: gamer191 <[email protected]>
This commit is contained in:
co-authored by
Christopher Dial
BOplaid
gamer191
parent
4dc054d51c
commit
4e969d3a6c
@@ -290,7 +290,7 @@ class KnownPiracyIE(UnsupportedInfoExtractor):
|
||||
r'highstream\.tv',
|
||||
r'uqload\.com',
|
||||
r'vedbam\.xyz',
|
||||
r'vadbam\.net'
|
||||
r'vadbam\.net',
|
||||
r'vidlo\.us',
|
||||
r'wolfstream\.tv',
|
||||
r'xvideosharing\.com',
|
||||
|
||||
@@ -2198,6 +2198,49 @@ class YoutubeTabIE(YoutubeTabBaseInfoExtractor):
|
||||
'extract_flat': True,
|
||||
'playlist_items': '75',
|
||||
},
|
||||
}, {
|
||||
# YoutubeTab_52
|
||||
# "UUMO" is a prefix that can be used for any channel to get a members-only playlist
|
||||
'note': 'flat playlist entry of subscriber_only video',
|
||||
'url': 'https://www.youtube.com/playlist?list=UUMOXuqSBlHAE6Xw-yeJA0Tunw',
|
||||
'info_dict': {
|
||||
'id': 'UUMOXuqSBlHAE6Xw-yeJA0Tunw',
|
||||
'availability': 'public',
|
||||
'title': 'Members-only videos',
|
||||
'description': 'Videos available to members of this channel. Automatically updated.',
|
||||
'tags': [],
|
||||
'modified_date': r're:\d{8}',
|
||||
'channel': 'Linus Tech Tips',
|
||||
'view_count': int,
|
||||
'channel_id': 'UCXuqSBlHAE6Xw-yeJA0Tunw',
|
||||
'channel_url': 'https://www.youtube.com/channel/UCXuqSBlHAE6Xw-yeJA0Tunw',
|
||||
'uploader_url': 'https://www.youtube.com/@LinusTechTips',
|
||||
'uploader_id': '@LinusTechTips',
|
||||
'uploader': 'Linus Tech Tips',
|
||||
},
|
||||
'playlist': [{
|
||||
'info_dict': {
|
||||
# availability is the only value we are testing for here
|
||||
'availability': 'subscriber_only',
|
||||
'id': str,
|
||||
'_type': 'url',
|
||||
'title': str,
|
||||
'duration': int,
|
||||
'url': str,
|
||||
'uploader': str,
|
||||
'uploader_id': str,
|
||||
'uploader_url': str,
|
||||
'channel': str,
|
||||
'channel_id': str,
|
||||
'channel_url': str,
|
||||
'ie_key': 'Youtube',
|
||||
},
|
||||
}],
|
||||
'playlist_mincount': 1,
|
||||
'params': {
|
||||
'extract_flat': True,
|
||||
'playlist_items': '1',
|
||||
},
|
||||
}]
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user