mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[kuwo:song] Give warnings for unavailable optional fields
This commit is contained in:
		| @@ -80,7 +80,7 @@ class KuwoIE(KuwoBaseIE): | |||||||
|             r'<h1[^>]+title="([^"]+)">', webpage, 'song name') |             r'<h1[^>]+title="([^"]+)">', webpage, 'song name') | ||||||
|         singer_name = self._html_search_regex( |         singer_name = self._html_search_regex( | ||||||
|             r'<div[^>]+class="s_img">\s*<a[^>]+title="([^>]+)"', |             r'<div[^>]+class="s_img">\s*<a[^>]+title="([^>]+)"', | ||||||
|             webpage, 'singer name', default=None) |             webpage, 'singer name', fatal=False) | ||||||
|         lrc_content = clean_html(get_element_by_id('lrcContent', webpage)) |         lrc_content = clean_html(get_element_by_id('lrcContent', webpage)) | ||||||
|         if lrc_content == '暂无':     # indicates no lyrics |         if lrc_content == '暂无':     # indicates no lyrics | ||||||
|             lrc_content = None |             lrc_content = None | ||||||
| @@ -89,7 +89,7 @@ class KuwoIE(KuwoBaseIE): | |||||||
|  |  | ||||||
|         album_id = self._html_search_regex( |         album_id = self._html_search_regex( | ||||||
|             r'<p[^>]+class="album"[^<]+<a[^>]+href="http://www\.kuwo\.cn/album/(\d+)/"', |             r'<p[^>]+class="album"[^<]+<a[^>]+href="http://www\.kuwo\.cn/album/(\d+)/"', | ||||||
|             webpage, 'album id', default=None, fatal=False) |             webpage, 'album id', fatal=False) | ||||||
|  |  | ||||||
|         publish_time = None |         publish_time = None | ||||||
|         if album_id is not None: |         if album_id is not None: | ||||||
| @@ -100,7 +100,7 @@ class KuwoIE(KuwoBaseIE): | |||||||
|  |  | ||||||
|             publish_time = self._html_search_regex( |             publish_time = self._html_search_regex( | ||||||
|                 r'发行时间:(\d{4}-\d{2}-\d{2})', album_info_page, |                 r'发行时间:(\d{4}-\d{2}-\d{2})', album_info_page, | ||||||
|                 'publish time', default=None) |                 'publish time', fatal=False) | ||||||
|             if publish_time: |             if publish_time: | ||||||
|                 publish_time = publish_time.replace('-', '') |                 publish_time = publish_time.replace('-', '') | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan