summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/udn.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--yt_dlp/extractor/udn.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/yt_dlp/extractor/udn.py b/yt_dlp/extractor/udn.py
index d5849d2..9970e4f 100644
--- a/yt_dlp/extractor/udn.py
+++ b/yt_dlp/extractor/udn.py
@@ -1,7 +1,7 @@
import re
+import urllib.parse
from .common import InfoExtractor
-from ..compat import compat_urlparse
from ..utils import (
determine_ext,
int_or_none,
@@ -13,7 +13,7 @@ class UDNEmbedIE(InfoExtractor):
IE_DESC = '聯合影音'
_PROTOCOL_RELATIVE_VALID_URL = r'//video\.udn\.com/(?:embed|play)/news/(?P<id>\d+)'
_VALID_URL = r'https?:' + _PROTOCOL_RELATIVE_VALID_URL
- _EMBED_REGEX = [r'<iframe[^>]+src="(?:https?:)?(?P<url>%s)"' % _PROTOCOL_RELATIVE_VALID_URL]
+ _EMBED_REGEX = [rf'<iframe[^>]+src="(?:https?:)?(?P<url>{_PROTOCOL_RELATIVE_VALID_URL})"']
_TESTS = [{
'url': 'http://video.udn.com/embed/news/300040',
'info_dict': {
@@ -66,8 +66,8 @@ class UDNEmbedIE(InfoExtractor):
continue
video_url = self._download_webpage(
- compat_urlparse.urljoin(url, api_url), video_id,
- note='retrieve url for %s video' % video_type)
+ urllib.parse.urljoin(url, api_url), video_id,
+ note=f'retrieve url for {video_type} video')
ext = determine_ext(video_url)
if ext == 'm3u8':