summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-01-22 23:34:40 +0600
committerSergey M․ <dstftw@gmail.com>2015-01-22 23:34:40 +0600
commitf353cbdb2f91564d4637462875c1a12bfbcd2ada (patch)
tree38b5d686b9f0ca48b35a57e708735de0e8cb420b
parent73e449b226ddfe204fb9f9bea5514141624abbf4 (diff)
downloadyoutube-dl-f353cbdb2f91564d4637462875c1a12bfbcd2ada.tar.gz
youtube-dl-f353cbdb2f91564d4637462875c1a12bfbcd2ada.tar.xz
youtube-dl-f353cbdb2f91564d4637462875c1a12bfbcd2ada.zip
[twitch:stream] Randomize query
-rw-r--r--youtube_dl/extractor/twitch.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index 14314916a..87e3c453d 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
 
 import itertools
 import re
+import random
 
 from .common import InfoExtractor
 from ..compat import (
@@ -305,7 +306,7 @@ class TwitchStreamIE(TwitchBaseIE):
 
         query = {
             'allow_source': 'true',
-            'p': '9386337',
+            'p': random.randint(1000000, 10000000),
             'player': 'twitchweb',
             'segment_preference': '4',
             'sig': access_token['sig'],