Joe

Results 13 comments of Joe

http://www.zhsc.net/ 这个网站有按照主题分类的,但是诗词的收录可能不全

Hi @chrisn, is there any fix will be applied to out of sync issue in the next release? Currently, I just using ffmpeg converts audio to 64bit rate to avoid...

Instead of converting MP3 file to CBR is there any other alternatives to get rid of this delay?

```javascript let blob = new Blob(this.replaceClipCurrentBuffer, {type: 'audio/mp3'}) let fileReader = new FileReader() fileReader.onloadend = (evt) => { this.audioContext.decodeAudioData(evt.target.result).then(audioBuffer => { let audioSourceElement = document.getElementById('audio') audioSourceElement.src = URL.createObjectURL(blob) // let...

@chrisn I just found if i directly access the url of Blob, it takes some time to generate the audio. I am not sure is it because I am building...

@chrisn I tryied to set src without calling peaks.setSource() and still unable to play the audio. But I found if I add browser default controls to the audio, it was...

There is no error logs. And I also found if called the URL.createObjectURL(), even for the default browser control bar might take few seconds to let me play. If I...

@chrisn Looks like I found the issue, if I added `preload='auto'` to the audio element the issue will be resolved.

For my case, the scenario requires the aduio to be loaded immedaitly after the I set the src attribute. Not sure this `preload='auto'` should be applied for all the time....

I want to cut particular few seconds in the waveform data and displayed it.