Browse Source

[spankwire] Use compat_urllib_parse_unquote

totalwebcasting
Sergey M․ 9 years ago
parent
commit
47af21e8f1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/spankwire.py

+ 2
- 2
youtube_dl/extractor/spankwire.py View File

@ -4,7 +4,7 @@ import re
from .common import InfoExtractor
from ..compat import (
compat_urllib_parse,
compat_urllib_parse_unquote,
compat_urllib_parse_urlparse,
compat_urllib_request,
)
@ -68,7 +68,7 @@ class SpankwireIE(InfoExtractor):
webpage, 'comment count', fatal=False))
video_urls = list(map(
compat_urllib_parse.unquote,
compat_urllib_parse_unquote,
re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*(?:encodeURIComponent\()?["\']([^"\']+)["\']', webpage)))
if webpage.find('flashvars\.encrypted = "true"') != -1:
password = self._search_regex(


Loading…
Cancel
Save