mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[ie/AmazonMiniTV] Fix extractors
Closes #7817 Authored by: GautamMKGarg, bashonly Co-authored by: GautamMKGarg <GautamMKgarg@gmail.com>
This commit is contained in:
parent
2da7bcca16
commit
538d37671a
@ -22,8 +22,11 @@ def _call_api(self, asin, data=None, note=None):
|
|||||||
|
|
||||||
resp = self._download_json(
|
resp = self._download_json(
|
||||||
f'https://www.amazon.in/minitv/api/web/{"graphql" if data else "prs"}',
|
f'https://www.amazon.in/minitv/api/web/{"graphql" if data else "prs"}',
|
||||||
asin, note=note, headers={'Content-Type': 'application/json'},
|
asin, note=note, headers={
|
||||||
data=json.dumps(data).encode() if data else None,
|
'Content-Type': 'application/json',
|
||||||
|
'currentpageurl': '/',
|
||||||
|
'currentplatform': 'dWeb'
|
||||||
|
}, data=json.dumps(data).encode() if data else None,
|
||||||
query=None if data else {
|
query=None if data else {
|
||||||
'deviceType': 'A1WMMUXPCUJL4N',
|
'deviceType': 'A1WMMUXPCUJL4N',
|
||||||
'contentId': asin,
|
'contentId': asin,
|
||||||
@ -46,7 +49,7 @@ class AmazonMiniTVIE(AmazonMiniTVBaseIE):
|
|||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'May I Kiss You?',
|
'title': 'May I Kiss You?',
|
||||||
'language': 'Hindi',
|
'language': 'Hindi',
|
||||||
'thumbnail': r're:^https?://.*\.jpg$',
|
'thumbnail': r're:^https?://.*\.(?:jpg|png)$',
|
||||||
'description': 'md5:a549bfc747973e04feb707833474e59d',
|
'description': 'md5:a549bfc747973e04feb707833474e59d',
|
||||||
'release_timestamp': 1644710400,
|
'release_timestamp': 1644710400,
|
||||||
'release_date': '20220213',
|
'release_date': '20220213',
|
||||||
@ -68,7 +71,7 @@ class AmazonMiniTVIE(AmazonMiniTVBaseIE):
|
|||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Jahaan',
|
'title': 'Jahaan',
|
||||||
'language': 'Hindi',
|
'language': 'Hindi',
|
||||||
'thumbnail': r're:^https?://.*\.jpg',
|
'thumbnail': r're:^https?://.*\.(?:jpg|png)',
|
||||||
'description': 'md5:05eb765a77bf703f322f120ec6867339',
|
'description': 'md5:05eb765a77bf703f322f120ec6867339',
|
||||||
'release_timestamp': 1647475200,
|
'release_timestamp': 1647475200,
|
||||||
'release_date': '20220317',
|
'release_date': '20220317',
|
||||||
|
Loading…
Reference in New Issue
Block a user