Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
228 views
in Technique[技术] by (71.8m points)

javascript - Play multiple wave at the same time

I have two files mywave1.wav1 mywave2.wav and want to play two files at the same time.

For now I try to play each waves separately , but it is not assured to start at the same time.

  var context = new AudioContext();
  var buffer = null;
  var source = context.createBufferSource();
  var request = new XMLHttpRequest();
  var source2 = context.createBufferSource();
  var request2 = new XMLHttpRequest();

  request.open('GET', 'http://localhost:8000/mywave1.wav' , true);
  request.responseType = 'arraybuffer';
  request.send();

  request.onload = function () {
    var res = request.response;
    context.decodeAudioData(res, function (buf) {
      source.buffer = buf;
    });
  };

  source.connect(context.destination);
  source.start(0);
  
  request2.open('GET', 'http://localhost:8000/mywave2.wav', true);
  request2.responseType = 'arraybuffer';
  request2.send();

  request2.onload = function () {
    var res = request.response;
    context.decodeAudioData(res, function (buf) {
      source2.buffer = buf;
    });
  };

  source2.connect(context.destination);
  source2.start(0);

What is the best practice to play the multiple audio file at the same time for Web Audio API??

question from:https://stackoverflow.com/questions/65941456/play-multiple-wave-at-the-same-time

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I found this project. It fulfill my requests.

https://github.com/naomiaro/waveform-playlist


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...