mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-14 19:17:49 +01:00
[xvideos] Use compat_urllib_parse_unquote
This commit is contained in:
parent
ee8de13e14
commit
aa4789d632
@ -4,7 +4,7 @@ import re
|
|||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import (
|
from ..compat import (
|
||||||
compat_urllib_parse,
|
compat_urllib_parse_unquote,
|
||||||
compat_urllib_request,
|
compat_urllib_request,
|
||||||
)
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
@ -37,7 +37,7 @@ class XVideosIE(InfoExtractor):
|
|||||||
if mobj:
|
if mobj:
|
||||||
raise ExtractorError('%s said: %s' % (self.IE_NAME, clean_html(mobj.group(1))), expected=True)
|
raise ExtractorError('%s said: %s' % (self.IE_NAME, clean_html(mobj.group(1))), expected=True)
|
||||||
|
|
||||||
video_url = compat_urllib_parse.unquote(
|
video_url = compat_urllib_parse_unquote(
|
||||||
self._search_regex(r'flv_url=(.+?)&', webpage, 'video URL'))
|
self._search_regex(r'flv_url=(.+?)&', webpage, 'video URL'))
|
||||||
video_title = self._html_search_regex(
|
video_title = self._html_search_regex(
|
||||||
r'<title>(.*?)\s+-\s+XVID', webpage, 'title')
|
r'<title>(.*?)\s+-\s+XVID', webpage, 'title')
|
||||||
|
Loading…
Reference in New Issue
Block a user