I'm writing something like a web-audio-editor, and I think I'm close to finishing the basics. I can play and stop an audiofile, but when I try to call the play method again it just won't work, even though the parameters havn't changed.
I'd be glad to see someone look into my problem as I cannot see why it doesn't work when similar code in other projects does. Unfortunately I cannot create a jsfiddle, because I would need to load an external mp3-file and it seems I'm not allowed to do that. But I have pasted the javascript here and the corresponding html file here.
All you need is a server you can upload the files to and a mp3 on it. Alternately you could use this link, but I will delete the files eventually.
I'm writing something like a web-audio-editor, and I think I'm close to finishing the basics. I can play and stop an audiofile, but when I try to call the play method again it just won't work, even though the parameters havn't changed.
I'd be glad to see someone look into my problem as I cannot see why it doesn't work when similar code in other projects does. Unfortunately I cannot create a jsfiddle, because I would need to load an external mp3-file and it seems I'm not allowed to do that. But I have pasted the javascript here and the corresponding html file here.
All you need is a server you can upload the files to and a mp3 on it. Alternately you could use this link, but I will delete the files eventually.
Share edited Jan 20, 2023 at 20:58 j08691 208k32 gold badges269 silver badges280 bronze badges asked Sep 6, 2013 at 15:27 causa primacausa prima 1,7122 gold badges15 silver badges25 bronze badges3 Answers
Reset to default 11You can't call start()
on an AudioBufferSourceNode
more than once. They're one-time-use only.
Really the only way to do this is to create a new AudioBufferSourceNode
from the underlying AudioBuffer
every time you need to start playback.
You can also leave it running and simply disconnect it from the gain-node, and the oscillator would presumably just idly/silently produce a waveform.
To avoid creating a new AudioBufferSourceNode
, you can simply use the playbackRate
like this:
source.playbackRate.value = 0;
to pause.
source.playbackRate.value = 1;
to play.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743689343a4490693.html
评论列表(0条)