mirror of
https://github.com/samirkumardas/pcm-player.git
synced 2025-04-03 15:37:31 +02:00
commit
ab0c17a2ec
1 changed files with 6 additions and 1 deletions
|
@ -42,6 +42,11 @@ PCMPlayer.prototype.getTypedArray = function () {
|
|||
|
||||
PCMPlayer.prototype.createContext = function() {
|
||||
this.audioCtx = new (window.AudioContext || window.webkitAudioContext)();
|
||||
|
||||
// context needs to be resumed on iOS and Safari (or it will stay in "suspended" state)
|
||||
this.audioCtx.resume();
|
||||
this.audioCtx.onstatechange = () => console.log(this.audioCtx.state); // if you want to see "Running" state in console and be happy about it
|
||||
|
||||
this.gainNode = this.audioCtx.createGain();
|
||||
this.gainNode.gain.value = 1;
|
||||
this.gainNode.connect(this.audioCtx.destination);
|
||||
|
@ -123,4 +128,4 @@ PCMPlayer.prototype.flush = function() {
|
|||
bufferSource.start(this.startTime);
|
||||
this.startTime += audioBuffer.duration;
|
||||
this.samples = new Float32Array();
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue