javascript - WebAudio not playing after stop(0) - Stack Overflow

I'm writing something like a web-audio-editor, and I think I'm close to finishing the basics.

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 badges
Add a ment  | 

3 Answers 3

Reset to default 11

You 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

相关推荐

  • javascript - WebAudio not playing after stop(0) - Stack Overflow

    I'm writing something like a web-audio-editor, and I think I'm close to finishing the basics.

    20小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信