-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Album art resolution #118
Comments
Hey ik that this is old, but you can select the image resolution from the api response (Spotify response contains 3 sizes). In the node helper there is a function that enables you to do that: (chack the getImgURL(images) {
let filtered = images.filter((image) => {
return image.width >= 240 && image.width <= 350; // Change here. I dont know the available resolutions, I think that the highest is 500*500
}); |
Thanks @Fabrizz ! I was actually able to figure this out by myself a few days after posting by looking at the code. It just took some time as I haven't coded anything in about 20 years or so. :) Now it looks the way I wanted. |
Just wanna say that this is a super nice idea. |
That nice, I have something similar! Maybe some (subtle) rgb lighting at the back? Using color data from the album |
Hi,
Just bought my first Raspberry today and successfully installed MMM-NowPlayingOnSpotify. Very cool piece of software, thank you!
One suggestion though: I noticed that the cover art pictures shown are not using the full resolution. If I open the same track on Spotify on my Android mobile phone or on an Apple iPad, the cover art photos shown are much sharper.
My plan is to create a framed cover art display on my living room wall and the only thing displayed is the album cover, kind of like you would have the 12" LP of the artist played shown. As the display will be quite large, a better resolution cover art photo would be nice...
The text was updated successfully, but these errors were encountered: