-
Notifications
You must be signed in to change notification settings - Fork 12
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
Ability to fetch track artwork as Base 64 #4
base: master
Are you sure you want to change the base?
Conversation
Thanks for the PR. I am away from the computer for a few days, but I'll be able to review this soon.
|
@dylanvorster somewhat unrelated, but if you have access to a mac you could probably add the setVolume method for mac too. Should be an easy one. I added it for windows already, but can't test on OSX. |
I tested this and it works well. I would like to clean up the |
"bugs": { | ||
"url": "https://github.com/jwalgran/playback/issues" | ||
}, | ||
"_id": "[email protected]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on looking at the package.json
for a lot of other popular modules, I would like to remove the following keys from the commit:
_id
dist
_from
_npmVersion
_npmUser
_shasum
_resolved
directories
(because it just refers to an empty object)
Cool beans :) Ive realised that there might be an issue if there is no artwork, my entire iTunes library all has artwork (which is why Im not sure if this is an issue) so we probably just need to look at it. |
Hi There
I really liked your library and how easy it was to use. I needed the ability to also fetch the artwork from iTunes for the application I'm building, and so I implemented an option where you can say : ({fetchArtwork: true}) and it will add the artwork to the transport. It gets encoded as a base64 and I've tested that it works on mac. I haven't yet added the support to windows, but ill probably get to that in a few weeks.
Cheers