[zee5] Support /episodes in URL

Closes #2016
pull/2062/head
pukkandan 3 years ago
parent d76d15a669
commit b3a5115ff1
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -177,7 +177,7 @@ class Zee5SeriesIE(InfoExtractor):
https?://(?:www\.)?zee5\.com/(?:[^#?]+/)?
(?:tvshows|kids|zee5originals)(?:/[^#/?]+){2}/
)
(?P<id>[^#/?]+)/?(?:$|[?#])
(?P<id>[^#/?]+)(?:/episodes)?/?(?:$|[?#])
'''
_TESTS = [{
'url': 'https://www.zee5.com/kids/kids-shows/krishna-balram/0-6-1871',
@ -209,8 +209,10 @@ class Zee5SeriesIE(InfoExtractor):
'info_dict': {
'id': '0-6-270',
},
}
]
}, {
'url': 'https://www.zee5.com/tvshows/details/chala-hawa-yeu-dya-ladies-zindabaad/0-6-2943/episodes',
'only_matching': True,
}]
def _entries(self, show_id):
access_token_request = self._download_json(

Loading…
Cancel
Save