logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: e12b4b8bccd364cb5cc68aab4888209965a82dc1
parent 18806e3b6b95d03c773c89e465e1b28b2f12a618
Author: Remita Amine <remitamine@gmail.com>
Date:   Tue, 19 Jun 2018 10:35:42 +0100

[6play] use geo verfication headers

Diffstat:

Myoutube_dl/extractor/sixplay.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/sixplay.py b/youtube_dl/extractor/sixplay.py @@ -71,7 +71,9 @@ class SixPlayIE(InfoExtractor): if container == 'm3u8' or ext == 'm3u8': if protocol == 'usp': if compat_parse_qs(compat_urllib_parse_urlparse(asset_url).query).get('token', [None])[0]: - urlh = self._request_webpage(asset_url, video_id, fatal=False) + urlh = self._request_webpage( + asset_url, video_id, fatal=False, + headers=self.geo_verification_headers()) if not urlh: continue asset_url = urlh.geturl()