logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: caf48f557a8f4f904c88346bcfc462069b8745bc
parent 77a842c8926625fe791ed36613f183bb195394cb
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 21 Feb 2019 05:59:07 +0700

[metacafe] Fix family filter bypass (closes #19287)

Diffstat:

Myoutube_dl/extractor/metacafe.py5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/metacafe.py b/youtube_dl/extractor/metacafe.py @@ -1,12 +1,13 @@ from __future__ import unicode_literals +import json import re from .common import InfoExtractor from ..compat import ( compat_parse_qs, + compat_urllib_parse, compat_urllib_parse_unquote, - compat_urllib_parse_urlencode, ) from ..utils import ( determine_ext, @@ -144,7 +145,7 @@ class MetacafeIE(InfoExtractor): headers = { # Disable family filter - 'Cookie': 'user=%s; ' % compat_urllib_parse_urlencode({'ffilter': False}) + 'Cookie': 'user=%s; ' % compat_urllib_parse.quote(json.dumps({'ffilter': False})) } # AnyClip videos require the flashversion cookie so that we get the link