mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 21:53:21 +00:00
Compare commits
No commits in common. "cea4b857f0019205b6a473b3a053aa36403892ed" and "a1c5bd82eccf36ed239d368b86ac46db236ff9b1" have entirely different histories.
cea4b857f0
...
a1c5bd82ec
@ -154,28 +154,6 @@ class PatreonIE(PatreonBaseIE):
|
||||
'channel_url': 'https://www.patreon.com/loish',
|
||||
'channel_follower_count': int,
|
||||
}
|
||||
}, {
|
||||
# bad videos under media (if media is included). Real one is under post_file
|
||||
'url': 'https://www.patreon.com/posts/premium-access-70282931',
|
||||
'info_dict': {
|
||||
'id': '70282931',
|
||||
'ext': 'mp4',
|
||||
'title': '[Premium Access + Uncut] The Office - 2x6 The Fight - Group Reaction',
|
||||
'channel_url': 'https://www.patreon.com/thenormies',
|
||||
'channel_id': '573397',
|
||||
'uploader_id': '2929435',
|
||||
'uploader': 'The Normies',
|
||||
'description': 'md5:79c9fd8778e2cef84049a94c058a5e23',
|
||||
'comment_count': int,
|
||||
'upload_date': '20220809',
|
||||
'thumbnail': r're:^https?://.*$',
|
||||
'channel_follower_count': int,
|
||||
'like_count': int,
|
||||
'timestamp': 1660052820,
|
||||
'tags': ['The Office', 'early access', 'uncut'],
|
||||
'uploader_url': 'https://www.patreon.com/thenormies',
|
||||
},
|
||||
'skip': 'Patron-only content',
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
@ -188,7 +166,7 @@ class PatreonIE(PatreonBaseIE):
|
||||
'fields[post_tag]': 'value',
|
||||
'fields[campaign]': 'url,name,patron_count',
|
||||
'json-api-use-default-includes': 'false',
|
||||
'include': 'audio,user,user_defined_tags,campaign,attachments_media',
|
||||
'include': 'media,user,user_defined_tags,campaign',
|
||||
})
|
||||
attributes = post['data']['attributes']
|
||||
title = attributes['title'].strip()
|
||||
@ -212,16 +190,11 @@ class PatreonIE(PatreonBaseIE):
|
||||
media_attributes = i.get('attributes') or {}
|
||||
download_url = media_attributes.get('download_url')
|
||||
ext = mimetype2ext(media_attributes.get('mimetype'))
|
||||
|
||||
# if size_bytes is None, this media file is likely unavailable
|
||||
# See: https://github.com/yt-dlp/yt-dlp/issues/4608
|
||||
size_bytes = int_or_none(media_attributes.get('size_bytes'))
|
||||
if download_url and ext in KNOWN_EXTENSIONS and size_bytes is not None:
|
||||
# XXX: what happens if there are multiple attachments?
|
||||
if download_url and ext in KNOWN_EXTENSIONS:
|
||||
return {
|
||||
**info,
|
||||
'ext': ext,
|
||||
'filesize': size_bytes,
|
||||
'filesize': int_or_none(media_attributes.get('size_bytes')),
|
||||
'url': download_url,
|
||||
}
|
||||
elif i_type == 'user':
|
||||
|
@ -70,17 +70,16 @@ class TubiTvIE(InfoExtractor):
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
video_data = self._download_json(
|
||||
'https://tubitv.com/oz/videos/%s/content?video_resources=dash&video_resources=hlsv3&video_resources=hlsv6' % video_id, video_id)
|
||||
'http://tubitv.com/oz/videos/%s/content' % video_id, video_id)
|
||||
title = video_data['title']
|
||||
|
||||
formats = []
|
||||
|
||||
for resource in video_data['video_resources']:
|
||||
if resource['type'] in ('dash', ):
|
||||
formats += self._extract_mpd_formats(resource['manifest']['url'], video_id, mpd_id=resource['type'], fatal=False)
|
||||
elif resource['type'] in ('hlsv3', 'hlsv6'):
|
||||
formats += self._extract_m3u8_formats(resource['manifest']['url'], video_id, 'mp4', m3u8_id=resource['type'], fatal=False)
|
||||
|
||||
url = video_data['url']
|
||||
# URL can be sometimes empty. Does this only happen when there is DRM?
|
||||
if url:
|
||||
formats = self._extract_m3u8_formats(
|
||||
self._proto_relative_url(url),
|
||||
video_id, 'mp4', 'm3u8_native')
|
||||
self._sort_formats(formats)
|
||||
|
||||
thumbnails = []
|
||||
|
Loading…
Reference in New Issue
Block a user