staskobzar / vue-audio-visual

VueJS audio visualization components
MIT License
713 stars 112 forks source link

[Bug] MediaElementAudioSource outputs zeros due to CORS access restrictions #3

Closed SohrabZ closed 6 years ago

SohrabZ commented 6 years ago

I received this error:

MediaElementAudioSource outputs zeros due to CORS access restrictions

Here is a fix according to https://stackoverflow.com/questions/31308679/mediaelementaudiosource-outputs-zeros-due-to-cors-access-restrictions-local-mp3

in AvBase.js:

createHTMLElements: function () {
    ...
    audio.crossOrigin = 'anonymous'
    ...
  },
staskobzar commented 6 years ago

Fixed. Will be available in next release. Thank you, Sohrab.

wty92911 commented 1 year ago

The core parameter was deleted in the new release,So how can I deal with it ?