We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My jsmediatag dowbload: https://github.com/aadsm/jsmediatags/blob/master/dist/jsmediatags.min.js
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script src="./jsmediatags.min.js"></script> <script> // var jsmediatags = require("jsmediatags"); var jsmediatags = window.jsmediatags; jsmediatags.read("a.mp3", { onSuccess: function (tag) { console.log(tag); }, onError: function (error) { console.log(error); } }); </script> </body> </html>
The text was updated successfully, but these errors were encountered:
I ran into a similar issue and was able to resolve by provided a full address like this:
jsmediatags.read(new URL(audioPath, document.baseURI).href, { // requires full path onSuccess: resolve, onError: reject });
Sorry, something went wrong.
No branches or pull requests
My jsmediatag dowbload: https://github.com/aadsm/jsmediatags/blob/master/dist/jsmediatags.min.js
The text was updated successfully, but these errors were encountered: