You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure yet, music-metadata 9.0.0 gives me this error when trying to parse **mkv** and **webm** files:
Also, do I still need a buffer polyfill for the browser? If I remove it, I can only retrieve metadata from flac files, everything else gives me the error below:
I'm testing with the following code:
// for web files (URLs)
const response = await fetch( uri );
const metadata = await parseWebStream( response.body, response.headers.get('content-type'), { skipPostHeaders: true } );
// for FileSystem API files
const file = await handle.getFile();
const metadata = await parseBlob( file );
Also, do I still need a
buffer
polyfill for the browser? If I remove it, I can only retrieve metadata from flac files, everything else gives me the error below:I'm testing with the following code:
Thanks.
Originally posted by @hvianna in #2135 (comment)
The text was updated successfully, but these errors were encountered: