mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	| @@ -6,6 +6,7 @@ import time | |||||||
|  |  | ||||||
| from .common import InfoExtractor | from .common import InfoExtractor | ||||||
| from .soundcloud import SoundcloudIE | from .soundcloud import SoundcloudIE | ||||||
|  | from ..compat import compat_str | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
|     url_basename, |     url_basename, | ||||||
| @@ -136,7 +137,7 @@ class AudiomackAlbumIE(InfoExtractor): | |||||||
|                         result[resultkey] = api_response[apikey] |                         result[resultkey] = api_response[apikey] | ||||||
|                 song_id = url_basename(api_response['url']).rpartition('.')[0] |                 song_id = url_basename(api_response['url']).rpartition('.')[0] | ||||||
|                 result['entries'].append({ |                 result['entries'].append({ | ||||||
|                     'id': api_response.get('id', song_id), |                     'id': compat_str(api_response.get('id', song_id)), | ||||||
|                     'uploader': api_response.get('artist'), |                     'uploader': api_response.get('artist'), | ||||||
|                     'title': api_response.get('title', song_id), |                     'title': api_response.get('title', song_id), | ||||||
|                     'url': api_response['url'], |                     'url': api_response['url'], | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan