[extractor/common] Limit --write-pages filename to 200 chars
This avoids problems with very long URLs.
This commit is contained in:
parent
877bfd69d1
commit
3ec05685f7
1 changed files with 4 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import base64
|
||||
import hashlib
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
|
@ -234,6 +235,9 @@ class InfoExtractor(object):
|
|||
url = url_or_request.get_full_url()
|
||||
except AttributeError:
|
||||
url = url_or_request
|
||||
if len(url) > 200:
|
||||
h = hashlib.md5(url).hexdigest()
|
||||
url = url[:200 - len(h)] + h
|
||||
raw_filename = ('%s_%s.dump' % (video_id, url))
|
||||
filename = sanitize_filename(raw_filename, restricted=True)
|
||||
self.to_screen(u'Saving request to ' + filename)
|
||||
|
|
Loading…
Reference in a new issue