diff options
Diffstat (limited to 'youtube_dl/extractor/common.py')
| -rw-r--r-- | youtube_dl/extractor/common.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 02a82dc57..3cf742a3b 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -66,6 +66,7 @@ class InfoExtractor(object):                      * asr        Audio sampling rate in Hertz                      * vbr        Average video bitrate in KBit/s                      * vcodec     Name of the video codec in use +                    * container  Name of the container format                      * filesize   The number of bytes, if known in advance                      * player_url SWF Player URL (used for rtmpdump).                      * protocol   The protocol that will be used for the actual @@ -239,7 +240,7 @@ class InfoExtractor(object):              except AttributeError:                  url = url_or_request              if len(url) > 200: -                h = u'___' + hashlib.md5(url).hexdigest() +                h = u'___' + hashlib.md5(url.encode('utf-8')).hexdigest()                  url = url[:200 - len(h)] + h              raw_filename = ('%s_%s.dump' % (video_id, url))              filename = sanitize_filename(raw_filename, restricted=True) | 
