mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
[91porn] Unquote final URL (Closes #8881)
This commit is contained in:
parent
94dcade8f8
commit
d95114dd83
|
@ -1,7 +1,10 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from ..compat import compat_urllib_parse
|
from ..compat import (
|
||||||
|
compat_urllib_parse,
|
||||||
|
compat_urllib_parse_unquote,
|
||||||
|
)
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
parse_duration,
|
parse_duration,
|
||||||
|
@ -55,7 +58,8 @@ class Porn91IE(InfoExtractor):
|
||||||
info_cn = self._download_webpage(
|
info_cn = self._download_webpage(
|
||||||
'http://91porn.com/getfile.php?' + url_params, video_id,
|
'http://91porn.com/getfile.php?' + url_params, video_id,
|
||||||
'get real video url')
|
'get real video url')
|
||||||
video_url = self._search_regex(r'file=([^&]+)&', info_cn, 'url')
|
video_url = compat_urllib_parse_unquote(self._search_regex(
|
||||||
|
r'file=([^&]+)&', info_cn, 'url'))
|
||||||
|
|
||||||
duration = parse_duration(self._search_regex(
|
duration = parse_duration(self._search_regex(
|
||||||
r'时长:\s*</span>\s*(\d+:\d+)', webpage, 'duration', fatal=False))
|
r'时长:\s*</span>\s*(\d+:\d+)', webpage, 'duration', fatal=False))
|
||||||
|
|
Loading…
Reference in a new issue