mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[RadioFrance] Fix thumb detection on profiles
This commit is contained in:
parent
7308dc895c
commit
e5e91ad05d
1 changed files with 8 additions and 2 deletions
|
@ -425,8 +425,9 @@ def _call_api(self, station, profile_id, cursor):
|
||||||
|
|
||||||
# On profile pages, the data is stored in a javascript array in the final <script>
|
# On profile pages, the data is stored in a javascript array in the final <script>
|
||||||
# Each episode is stored as
|
# Each episode is stored as
|
||||||
# a[0] = { id: ... }; a[1] = [ id: ... ]; etc.
|
# a[0] = { id: ... }; a[1] = [ id: ... ]; on page 2->
|
||||||
# Annoyingly, sometimes it is delivered using 'b', with 'a' holding metadata
|
# If a page had a thumbnail, the a variable contains image data,
|
||||||
|
# and episode data is stored in b[0]...
|
||||||
resp['items'] = []
|
resp['items'] = []
|
||||||
podcastindex = 0
|
podcastindex = 0
|
||||||
nextmatch = True
|
nextmatch = True
|
||||||
|
@ -447,6 +448,11 @@ def _call_api(self, station, profile_id, cursor):
|
||||||
|
|
||||||
resp['metadata'] = self._search_json(r'content:\s*', webpage, profile_id, profile_id,
|
resp['metadata'] = self._search_json(r'content:\s*', webpage, profile_id, profile_id,
|
||||||
transform_source=js_to_json)
|
transform_source=js_to_json)
|
||||||
|
# If the image data is stored separately rather than in the main content area
|
||||||
|
if resp['metadata']['visual'] and isinstance(resp['metadata']['visual'], str):
|
||||||
|
imagedata = dict()
|
||||||
|
imagedata['src'] = self._og_search_thumbnail(webpage)
|
||||||
|
resp['metadata']['visual'] = imagedata
|
||||||
|
|
||||||
return resp
|
return resp
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue