youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 3ee2aa7a165670ac6f0a22fe8a3aeda64727aebb
parent 083c9df93b08a24e967b68fbdd2f4a71ae74c8c8
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 23 Jan 2015 00:06:02 +0100

Merge remote-tracking branch 'origin/master'

Diffstat:
Myoutube_dl/extractor/twitch.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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'],