Browse Source

[photobucket] Use compat_urllib_parse_unquote

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

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

@ -4,7 +4,7 @@ import json
import re
from .common import InfoExtractor
from ..compat import compat_urllib_parse
from ..compat import compat_urllib_parse_unquote
class PhotobucketIE(InfoExtractor):
@ -34,7 +34,7 @@ class PhotobucketIE(InfoExtractor):
info_json = self._search_regex(r'Pb\.Data\.Shared\.put\(Pb\.Data\.Shared\.MEDIA, (.*?)\);',
webpage, 'info json')
info = json.loads(info_json)
url = compat_urllib_parse.unquote(self._html_search_regex(r'file=(.+\.mp4)', info['linkcodes']['html'], 'url'))
url = compat_urllib_parse_unquote(self._html_search_regex(r'file=(.+\.mp4)', info['linkcodes']['html'], 'url'))
return {
'id': video_id,
'url': url,


Loading…
Cancel
Save