Upgrade yt_dlp and download script
This commit is contained in:
@@ -7,7 +7,7 @@ from ..utils import (
|
||||
parse_codecs,
|
||||
parse_duration,
|
||||
str_to_int,
|
||||
unified_timestamp
|
||||
unified_timestamp,
|
||||
)
|
||||
|
||||
|
||||
@@ -19,33 +19,32 @@ class GabTVIE(InfoExtractor):
|
||||
'id': '61217eacea5665de450d0488',
|
||||
'ext': 'mp4',
|
||||
'title': 'WHY WAS AMERICA IN AFGHANISTAN - AMERICA FIRST AGAINST AMERICAN OLIGARCHY',
|
||||
'description': None,
|
||||
'uploader': 'Wurzelroot',
|
||||
'uploader_id': '608fb0a85738fd1974984f7d',
|
||||
'thumbnail': 'https://tv.gab.com/image/61217eacea5665de450d0488',
|
||||
}
|
||||
},
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
id = self._match_id(url).split('-')[-1]
|
||||
webpage = self._download_webpage(url, id)
|
||||
video_id = self._match_id(url).split('-')[-1]
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
channel_id = self._search_regex(r'data-channel-id=\"(?P<channel_id>[^\"]+)', webpage, 'channel_id')
|
||||
channel_name = self._search_regex(r'data-channel-name=\"(?P<channel_id>[^\"]+)', webpage, 'channel_name')
|
||||
title = self._search_regex(r'data-episode-title=\"(?P<channel_id>[^\"]+)', webpage, 'title')
|
||||
view_key = self._search_regex(r'data-view-key=\"(?P<channel_id>[^\"]+)', webpage, 'view_key')
|
||||
description = clean_html(
|
||||
self._html_search_regex(self._meta_regex('description'), webpage, 'description', group='content')) or None
|
||||
available_resolutions = re.findall(r'<a\ data-episode-id=\"%s\"\ data-resolution=\"(?P<resolution>[^\"]+)' % id,
|
||||
webpage)
|
||||
available_resolutions = re.findall(
|
||||
rf'<a\ data-episode-id=\"{video_id}\"\ data-resolution=\"(?P<resolution>[^\"]+)', webpage)
|
||||
|
||||
formats = []
|
||||
for resolution in available_resolutions:
|
||||
frmt = {
|
||||
'url': f'https://tv.gab.com/media/{id}?viewKey={view_key}&r={resolution}',
|
||||
'url': f'https://tv.gab.com/media/{video_id}?viewKey={view_key}&r={resolution}',
|
||||
'format_id': resolution,
|
||||
'vcodec': 'h264',
|
||||
'acodec': 'aac',
|
||||
'ext': 'mp4'
|
||||
'ext': 'mp4',
|
||||
}
|
||||
if 'audio-' in resolution:
|
||||
frmt['abr'] = str_to_int(resolution.replace('audio-', ''))
|
||||
@@ -56,13 +55,13 @@ class GabTVIE(InfoExtractor):
|
||||
formats.append(frmt)
|
||||
|
||||
return {
|
||||
'id': id,
|
||||
'id': video_id,
|
||||
'title': title,
|
||||
'formats': formats,
|
||||
'description': description,
|
||||
'uploader': channel_name,
|
||||
'uploader_id': channel_id,
|
||||
'thumbnail': f'https://tv.gab.com/image/{id}',
|
||||
'thumbnail': f'https://tv.gab.com/image/{video_id}',
|
||||
}
|
||||
|
||||
|
||||
@@ -80,7 +79,7 @@ class GabIE(InfoExtractor):
|
||||
'description': 'md5:204055fafd5e1a519f5d6db953567ca3',
|
||||
'timestamp': 1635192289,
|
||||
'upload_date': '20211025',
|
||||
}
|
||||
},
|
||||
}, {
|
||||
'url': 'https://gab.com/TheLonelyProud/posts/107045884469287653',
|
||||
'md5': 'f9cefcfdff6418e392611a828d47839d',
|
||||
@@ -92,7 +91,7 @@ class GabIE(InfoExtractor):
|
||||
'timestamp': 1633390571,
|
||||
'upload_date': '20211004',
|
||||
'uploader': 'TheLonelyProud',
|
||||
}
|
||||
},
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
Reference in New Issue
Block a user