mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
Fixed some comments and code
This commit is contained in:
parent
174cacc9e0
commit
bc4907c8ab
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
class RTVEALaCartaIE(InfoExtractor):
|
class RTVEALaCartaIE(InfoExtractor):
|
||||||
IE_NAME = 'rtve.es:alacarta'
|
IE_NAME = 'rtve.es:alacarta'
|
||||||
IE_DESC = 'RTVE a la carta, play and infantil'
|
IE_DESC = 'RTVE a la carta and Play'
|
||||||
_VALID_URL = [
|
_VALID_URL = [
|
||||||
r'https?://(?:www\.)?rtve\.es/(m/)?(alacarta/videos|filmoteca)/[^/]+/[^/]+/(?P<id>\d+)',
|
r'https?://(?:www\.)?rtve\.es/(m/)?(alacarta/videos|filmoteca)/[^/]+/[^/]+/(?P<id>\d+)',
|
||||||
r'https?://(?:www\.)?rtve\.es/(m/)?play/videos/[^/]+/[^/]+/(?P<id>\d+)',
|
r'https?://(?:www\.)?rtve\.es/(m/)?play/videos/[^/]+/[^/]+/(?P<id>\d+)',
|
||||||
|
@ -147,12 +147,12 @@ def _get_alfabet(alphabet_data):
|
||||||
|
|
||||||
def _extract_png_formats(self, video_id):
|
def _extract_png_formats(self, video_id):
|
||||||
formats = []
|
formats = []
|
||||||
|
q = qualities(['Media', 'Alta', 'HQ', 'HD_READY', 'HD_FULL'])
|
||||||
for manager in (self._manager, 'rtveplayw'):
|
for manager in (self._manager, 'rtveplayw'):
|
||||||
png = self._download_webpage(
|
png = self._download_webpage(
|
||||||
f'http://www.rtve.es/ztnr/movil/thumbnail/{manager}/videos/{video_id}.png',
|
f'http://www.rtve.es/ztnr/movil/thumbnail/{manager}/videos/{video_id}.png',
|
||||||
video_id, 'Downloading url information', query={'q': 'v2'})
|
video_id, 'Downloading url information', query={'q': 'v2'})
|
||||||
q = qualities(['Media', 'Alta', 'HQ', 'HD_READY', 'HD_FULL'])
|
|
||||||
for quality, video_url in self._decrypt_url(png):
|
for quality, video_url in self._decrypt_url(png):
|
||||||
ext = determine_ext(video_url)
|
ext = determine_ext(video_url)
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
|
|
Loading…
Reference in a new issue