mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
fix syntax
This commit is contained in:
parent
185849f1d4
commit
c7db73fcd3
@ -83,7 +83,7 @@ class ContarBaseIE(InfoExtractor):
|
|||||||
def _get_season_number(self, serie_info, video_id):
|
def _get_season_number(self, serie_info, video_id):
|
||||||
for season in serie_info.get('seasons', []).get('data', []):
|
for season in serie_info.get('seasons', []).get('data', []):
|
||||||
season_number = season.get('name')
|
season_number = season.get('name')
|
||||||
for episode in season.get('videos',[]).get('data', []):
|
for episode in season.get('videos', []).get('data', []):
|
||||||
if episode.get('id') == video_id:
|
if episode.get('id') == video_id:
|
||||||
return season_number
|
return season_number
|
||||||
return None
|
return None
|
||||||
@ -218,18 +218,17 @@ class ContarSerieIE(ContarBaseIE):
|
|||||||
|
|
||||||
class ContarChannelIE(ContarBaseIE):
|
class ContarChannelIE(ContarBaseIE):
|
||||||
|
|
||||||
_VALID_URL = r'https?://(?:www\.)?cont\.ar/channel/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?cont\.ar/channel/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://www.cont.ar/channel/242',
|
'url': 'https://www.cont.ar/channel/242',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '242',
|
'id': '242',
|
||||||
'title': 'md5:352d30d8fa7896eec02f65b2c7299d27',
|
'title': 'md5:352d30d8fa7896eec02f65b2c7299d27',
|
||||||
'description': 'md5:ac4e1f02201cffb86ac8ed4bcba4a593'
|
'description': 'md5:ac4e1f02201cffb86ac8ed4bcba4a593'
|
||||||
},
|
},
|
||||||
'playlist_mincount': 68,
|
'playlist_mincount': 68,
|
||||||
'params': {
|
'params': {
|
||||||
'username': 'ytdl@yt-dl.org',
|
'usenetrc': True,
|
||||||
'password': '(snip)',
|
|
||||||
'skip_download': True
|
'skip_download': True
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -251,7 +250,7 @@ class ContarChannelIE(ContarBaseIE):
|
|||||||
|
|
||||||
class ContarBrowseIE(ContarBaseIE):
|
class ContarBrowseIE(ContarBaseIE):
|
||||||
|
|
||||||
_VALID_URL = r'https?://(?:www\.)?cont\.ar/browse/genre/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?cont\.ar/browse/genre/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://www.cont.ar/browse/genre/46',
|
'url': 'https://www.cont.ar/browse/genre/46',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
Loading…
Reference in New Issue
Block a user