mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 10:51:26 +01:00
Compare commits
No commits in common. "1c29d8c95fa669c3c2a33d93d036879dc9376b39" and "43aca56834f73094c547e1a2d4c2e12c4e9bc54a" have entirely different histories.
1c29d8c95f
...
43aca56834
|
@ -167,7 +167,7 @@ class TheaterComplexTownBaseIE(StacommuBaseIE):
|
||||||
_LOGIN_HEADERS = {
|
_LOGIN_HEADERS = {
|
||||||
'Accept': '*/*',
|
'Accept': '*/*',
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'X-Client-Version': 'Chrome/JsCore/9.23.0/FirebaseCore-web',
|
'X-Client-Version': 'Chrome/JsCore/9.9.4/FirebaseCore-web',
|
||||||
'Referer': 'https://www.theater-complex.town/',
|
'Referer': 'https://www.theater-complex.town/',
|
||||||
'Origin': 'https://www.theater-complex.town',
|
'Origin': 'https://www.theater-complex.town',
|
||||||
}
|
}
|
||||||
|
@ -200,7 +200,7 @@ class TheaterComplexTownVODIE(TheaterComplexTownBaseIE):
|
||||||
_API_PATH = 'videoEpisodes'
|
_API_PATH = 'videoEpisodes'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
return self._extract_vod(url)
|
return self._extract_ppv(url)
|
||||||
|
|
||||||
|
|
||||||
class TheaterComplexTownPPVIE(TheaterComplexTownBaseIE):
|
class TheaterComplexTownPPVIE(TheaterComplexTownBaseIE):
|
||||||
|
@ -228,4 +228,4 @@ class TheaterComplexTownPPVIE(TheaterComplexTownBaseIE):
|
||||||
_API_PATH = 'events'
|
_API_PATH = 'events'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
return self._extract_ppv(url)
|
return self._extract_vod(url)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user