diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-05-01 22:53:30 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-05-01 22:53:30 +0700 |
commit | a0df8a06178e530a1097f177a1faf1d2c609ac99 (patch) | |
tree | 652bf3eb080ce2281f864eb91677b33dfb22e1d6 | |
parent | d1b9a5e2eff1c075b38815a3d2b25eb8b3f626bb (diff) |
[cda] Improve extraction (closes #28709, closes #28937)
-rw-r--r-- | youtube_dl/extractor/cda.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/cda.py b/youtube_dl/extractor/cda.py index 1b4362144..e1b391937 100644 --- a/youtube_dl/extractor/cda.py +++ b/youtube_dl/extractor/cda.py @@ -133,6 +133,8 @@ class CDAIE(InfoExtractor): 'age_limit': 18 if need_confirm_age else 0, } + info = self._search_json_ld(webpage, video_id, default={}) + # Source: https://www.cda.pl/js/player.js?t=1606154898 def decrypt_file(a): for p in ('_XDDD', '_CDA', '_ADC', '_CXD', '_QWE', '_Q5', '_IKSDE'): @@ -197,7 +199,7 @@ class CDAIE(InfoExtractor): handler = self._download_webpage webpage = handler( - self._BASE_URL + href, video_id, + urljoin(self._BASE_URL, href), video_id, 'Downloading %s version information' % resolution, fatal=False) if not webpage: # Manually report warning because empty page is returned when @@ -209,6 +211,4 @@ class CDAIE(InfoExtractor): self._sort_formats(formats) - info = self._search_json_ld(webpage, video_id, default={}) - return merge_dicts(info_dict, info) |