Browse Source

Merge remote-tracking branch 'origin/master'

totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
3ee2aa7a16
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/twitch.py

+ 2
- 1
youtube_dl/extractor/twitch.py View File

@ -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'],


Loading…
Cancel
Save