-
Notifications
You must be signed in to change notification settings - Fork 2
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
extract id3 metadata from mp3s to display on tracks being played #8
Comments
dont think this is going to work unless the mp3s can be served with CORS headers, as the browser won't let us manipulate binary data that it deems unsafe. |
could maybe proxy the requests for tracks somehow.. but would be a lot of bandwidth. |
technically speaking we could do a script to process them all, store the metadata somewhere in local files and then only use those. save the bandwidth. and keeping that in mind i guess it doesn't need to be an online process at all, could just run a script on local directories of the releases |
could also do that, might be a lot more data to send with the rest of the bundle though. |
did a little googling for javascript id3 extractors, there are a few options around: |
yeah, they all depend on the data being served with CORS headers, or you can't do binary stuffs on them. |
No description provided.
The text was updated successfully, but these errors were encountered: