1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-09-21 19:05:34 +00:00

Accept suggestions on PR; comply with conventions

Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
Bart Broere 2023-04-03 09:50:21 +02:00 committed by GitHub
parent 9e1acb2527
commit 632897860b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,10 +4,10 @@ import re
from .common import InfoExtractor from .common import InfoExtractor
from ..compat import ( from ..compat import (
compat_cookies_SimpleCookie,
compat_HTTPError, compat_HTTPError,
compat_str, compat_str,
compat_urllib_parse_unquote_plus, compat_urllib_parse_unquote_plus,
compat_cookies_SimpleCookie,
) )
from ..utils import ( from ..utils import (
determine_ext, determine_ext,
@ -194,20 +194,20 @@ class NPOIE(NPOBaseIE):
}) })
cookies = compat_cookies_SimpleCookie() cookies = compat_cookies_SimpleCookie()
cookies.load(xsrf_token_response.headers['Set-Cookie']) cookies.load(xsrf_token_response.headers['Set-Cookie'])
cookies = {k: v.value for k, v in cookies.items()} cookies = dict((k, v.value) for k, v in cookies.items())
xsrf_token = cookies['XSRF-TOKEN'] xsrf_token = cookies['XSRF-TOKEN']
player = self._download_json( player = self._download_json(
'https://www.npostart.nl/player/%s' % video_id, video_id, 'https://www.npostart.nl/player/%s' % video_id, video_id,
'Downloading player JSON', 'Downloading player JSON',
headers={ headers={
"x-xsrf-token": compat_urllib_parse_unquote_plus(xsrf_token) 'x-xsrf-token': compat_urllib_parse_unquote_plus(xsrf_token)
}, },
data=urlencode_postdata({ data=urlencode_postdata({
'autoplay': 0, 'autoplay': 0,
'share': 1, 'share': 1,
'pageUrl': url, 'pageUrl': url,
'isFavourite': "false", 'isFavourite': 'false',
'hasAdConsent': 0, 'hasAdConsent': 0,
})) }))
@ -226,7 +226,7 @@ class NPOIE(NPOBaseIE):
'tokenId': player_token, 'tokenId': player_token,
'streamType': 'broadcast', 'streamType': 'broadcast',
}, },
data=b"") data=b'')
# Empty byte string in the call above to force a POST request # Empty byte string in the call above to force a POST request
# Without it HTTP 405 will happen # Without it HTTP 405 will happen
if not streams: if not streams: