aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/novaplay.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/novaplay.py')
-rw-r--r--hypervideo_dl/extractor/novaplay.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/hypervideo_dl/extractor/novaplay.py b/hypervideo_dl/extractor/novaplay.py
index 724986a..bfb2c87 100644
--- a/hypervideo_dl/extractor/novaplay.py
+++ b/hypervideo_dl/extractor/novaplay.py
@@ -41,9 +41,7 @@ class NovaPlayIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
- video_props = self._parse_json(self._search_regex(
- r'<script\s?id=\"__NEXT_DATA__\"\s?type=\"application/json\">({.+})</script>',
- webpage, 'video_props'), video_id)['props']['pageProps']['video']
+ video_props = self._search_nextjs_data(webpage, video_id)['props']['pageProps']['video']
m3u8_url = self._download_json(
f'https://nbg-api.fite.tv/api/v2/videos/{video_id}/streams',
video_id, headers={'x-flipps-user-agent': 'Flipps/75/9.7'})[0]['url']