I'm using nestjs and I want to get album art from youtube-music.
Is there no way to get youtubeMusic's album art using nestCrawlerService?
private readonly crawler: NestCrawlerService
//...
await this.crawler.fetch({
target: 'https://music.youtube.com/playlist?list=OLAK5uy_nsZm9AscLdmJf4wE2Af8D3JvFzfPCKdEs',
fetch: {
info: {
selector: 'div#thumbnail img#img',
attr: 'src',
},
},
});
From the link above (actual) I want to get Jackson's album cover.
