diff options
author | Remita Amine <remitamine@gmail.com> | 2019-11-30 23:50:28 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2019-11-30 23:50:28 +0100 |
commit | 12cc89122d1b4e30d4f5a99b2fc0b440217a1693 (patch) | |
tree | a226837c8ea24ab75d183b1f15f520776d1746ca /youtube_dl/extractor | |
parent | 376528447652a6b19e60e837ff632024aec82ad1 (diff) |
[nrl] fix extraction
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/nrl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/nrl.py b/youtube_dl/extractor/nrl.py index 798b91e04..22a2df8d3 100644 --- a/youtube_dl/extractor/nrl.py +++ b/youtube_dl/extractor/nrl.py @@ -23,8 +23,8 @@ class NRLTVIE(InfoExtractor): def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) - q_data = self._parse_json(self._search_regex( - r"(?s)q-data='({.+?})'", webpage, 'player data'), display_id) + q_data = self._parse_json(self._html_search_regex( + r'(?s)q-data="({.+?})"', webpage, 'player data'), display_id) ooyala_id = q_data['videoId'] return self.url_result( 'ooyala:' + ooyala_id, 'Ooyala', ooyala_id, q_data.get('title')) |