Web Audio API - Как установить усиление вывода, а также указать канал для вывода? - PullRequest
0 голосов
/ 15 ноября 2018

Мой код:

// Create an AudioContext instance for this sound
    var audioContext = new (window.AudioContext || window.webkitAudioContext)();
    var maxChannelCount = audioContext.destination.maxChannelCount;
    var gainNode = audioContext.createGain()
    audioContext.destination.channelCount = maxChannelCount;

    var merger = audioContext.createChannelMerger(maxChannelCount);
    merger.connect(audioContext.destination);

    gainNode.gain.value = 0.1 // 10 %
    gainNode.connect(audioContext.destination)
    // Create a buffer for the incoming sound content
    var source = audioContext.createBufferSource();

    // Create the XHR which will grab the audio contents
    var request = new XMLHttpRequest();
    // Set the audio file src here
    request.open('GET', 'phonemes/bad-bouyed/bad.mp3', true);
    // Setting the responseType to arraybuffer sets up the audio decoding
    request.responseType = 'arraybuffer';
    request.onload = function() {
      // Decode the audio once the require is complete
      audioContext.decodeAudioData(request.response, function(buffer) {
        source.buffer = buffer;


        // Connect the audio to source (Can I also set the gain within this declaration?)
        source.connect(merger, 0,10);


        // Simple setting for the buffer
        source.loop = false;
        // Play the sound!
        source.start(0);
      }, function(e) {
        console.log('Audio error! ', e);
      });
    }
    // Send the request which kicks off
    request.send();

Приведенный выше код загружает файл mp3 и воспроизводит его с помощью API Web Audio, это прекрасно работает, хотя мне просто интересно, возможно ли установить усиление источника И также настроить выходной канал, используя мой уже существующий код. Вы можете видеть выше, я уже создал узел усиления и подключил аудио контекст. Каков синтаксис для указания обоих? Объявляю ли я их в том порядке, в котором хочу их исполнить?

Например

source.connect (слияние, 0,10);

source.connect (gainNode);

Любая помощь в этом была бы великолепна.

...