From 4827270526621cdabe74275deb38b04c2ef1b0d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Sun, 15 Oct 2017 06:11:35 +0700 Subject: [PATCH] [scrippsnetworks:watch] Bypass geo restriction --- youtube_dl/extractor/scrippsnetworks.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/scrippsnetworks.py b/youtube_dl/extractor/scrippsnetworks.py index 411fef84c..b446a02ba 100644 --- a/youtube_dl/extractor/scrippsnetworks.py +++ b/youtube_dl/extractor/scrippsnetworks.py @@ -10,6 +10,7 @@ import re from .common import InfoExtractor from .anvato import AnvatoIE from ..utils import ( + smuggle_url, urlencode_postdata, xpath_text, ) @@ -183,5 +184,7 @@ x-api-key:%(key)s })['results'][0]['mcpId'] return self.url_result( - 'anvato:anvato_scripps_app_web_prod_0837996dbe373629133857ae9eb72e740424d80a:%s' % mcp_id, + smuggle_url( + 'anvato:anvato_scripps_app_web_prod_0837996dbe373629133857ae9eb72e740424d80a:%s' % mcp_id, + {'geo_countries': ['US']}), AnvatoIE.ie_key(), video_id=mcp_id)