mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[extractor/pornez] Handle relative URLs in iframe (#6171)
Authored by: JChris246 Closes #6162
This commit is contained in:
parent
b1bde57bef
commit
f7efe6dc95
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import int_or_none
|
from ..utils import int_or_none, urljoin
|
||||||
|
|
||||||
|
|
||||||
class PornezIE(InfoExtractor):
|
class PornezIE(InfoExtractor):
|
||||||
|
@ -20,7 +20,8 @@ def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
iframe_src = self._html_search_regex(
|
iframe_src = self._html_search_regex(
|
||||||
r'<iframe[^>]+src="(https?://pornez\.net/player/\?[^"]+)"', webpage, 'iframe', fatal=True)
|
r'<iframe[^>]+src="([^"]+)"', webpage, 'iframe', fatal=True)
|
||||||
|
iframe_src = urljoin('https://pornez.net', iframe_src)
|
||||||
title = self._html_search_meta(['name', 'twitter:title', 'og:title'], webpage, 'title', default=None)
|
title = self._html_search_meta(['name', 'twitter:title', 'og:title'], webpage, 'title', default=None)
|
||||||
if title is None:
|
if title is None:
|
||||||
title = self._search_regex(r'<h1>(.*?)</h1>', webpage, 'title', fatal=True)
|
title = self._search_regex(r'<h1>(.*?)</h1>', webpage, 'title', fatal=True)
|
||||||
|
|
Loading…
Reference in a new issue