1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00

[extractor/common] Limit --write-pages filename to 200 chars

This avoids problems with very long URLs.
This commit is contained in:
Philipp Hagemeister 2014-01-17 14:47:46 +01:00
parent 877bfd69d1
commit 3ec05685f7

View file

@ -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)