mirror of
https://github.com/yt-dlp/yt-dlp
synced 2024-12-28 22:24:34 +01:00
Update fptplay.py
This commit is contained in:
parent
44d1b925ae
commit
b36acfe977
1 changed files with 1 additions and 3 deletions
|
@ -40,11 +40,9 @@ class FptplayIE(InfoExtractor):
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
contentId = self._match_id(url)
|
contentId = self._match_id(url)
|
||||||
|
|
||||||
# Need valid cookie with Bearer token, else it won't work
|
# Need valid cookie with Bearer token, else it won't work
|
||||||
token = self._get_cookies(url).get('token')
|
token = self._get_cookies(url).get('token')
|
||||||
res = self._download_json(self.get_api_with_st_token(contentId), contentId, expected_status=406)
|
res = self._download_json(self.get_api_with_st_token(contentId), contentId, expected_status=406)
|
||||||
|
|
||||||
if res['result']['episode_type'] == 0:
|
if res['result']['episode_type'] == 0:
|
||||||
# movie or single video
|
# movie or single video
|
||||||
manifest = self._download_json(self.get_api_with_st_token(contentId, 0), contentId, headers={'authorization': f'Bearer {token.value}'}, expected_status=406)
|
manifest = self._download_json(self.get_api_with_st_token(contentId, 0), contentId, headers={'authorization': f'Bearer {token.value}'}, expected_status=406)
|
||||||
|
@ -143,4 +141,4 @@ class FptplayIE(InfoExtractor):
|
||||||
return t
|
return t
|
||||||
|
|
||||||
st_token = convert(n).replace('+', '-').replace('/', '_').replace('=', '')
|
st_token = convert(n).replace('+', '-').replace('/', '_').replace('=', '')
|
||||||
return f'https://api.fptplay.net{path}?{urllib.parse.urlencode({'st': st_token, 'e': timestamp})}'
|
return f"https://api.fptplay.net{path}?{urllib.parse.urlencode({'st': st_token, 'e': timestamp})}"
|
||||||
|
|
Loading…
Reference in a new issue