1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 05:31:15 +02:00

[twitch:stream] Randomize query

This commit is contained in:
Sergey M․ 2015-01-22 23:34:40 +06:00
parent 73e449b226
commit f353cbdb2f

View File

@ -3,6 +3,7 @@
import itertools
import re
import random
from .common import InfoExtractor
from ..compat import (
@ -305,7 +306,7 @@ def _real_extract(self, url):
query = {
'allow_source': 'true',
'p': '9386337',
'p': random.randint(1000000, 10000000),
'player': 'twitchweb',
'segment_preference': '4',
'sig': access_token['sig'],