是否可以从.wav文件创建MediaStream?

问题描述 投票:0回答:1

我目前有一个函数从navigator.getUserMedia()接收MediaStream,效果很好。我想提供上传音频文件的选项,并模仿它通过相同的功能。我想知道是否可以上传音频文件并创建Mediastream对象并通过以下功能传递它?

    startUserMedia(stream) {
    this.setState({ audio: stream });
    var audioContext = new AudioContext();
    var source = audioContext.createMediaStreamSource(stream);
    var processor = audioContext.createScriptProcessor(8192, 1, 1);

    source.connect(processor);
    processor.connect(audioContext.destination);

    const that = this;
    let audioBuffers = [];
    this.setState({ currentDuration: 0 });
    processor.onaudioprocess = function(e) {
      // Do something with the data, i.e Convert this to WAV
      if (that.state.currentDuration < that.state.chunkDuration) {
        that.setState({
          currentDuration: that.state.currentDuration + e.inputBuffer.duration
        });

        resampler(e.inputBuffer, 16000, function(event) {
          const buffer = event.getAudioBuffer();
          if (that.state.voiceActive) {
            audioBuffers.push(buffer);
          }
        });
      } else {
        if (!that.state.voiceActive) {
          that.mergeAndSendAudio(audioBuffers, audioContext);
          that.setState({ currentDuration: 0 });
          audioBuffers = [];
          audioBuffers.push(e.inputBuffer);
        } else {
          audioBuffers.push(e.inputBuffer);
        }
      }
    };

    var options = {
      onVoiceStart: function() {
        console.log("voice start");
        that.setState({ voiceActive: true });
      },
      onVoiceStop: function() {
        console.log("voice stop");
        that.setState({ voiceActive: false });
      },
      onUpdate: function(val) {
        // console.log('curr val:', val);
      }
    };
    vad(audioContext, stream, options);
  }
javascript webrtc audio-recording
1个回答
1
投票

找到答案:

  handleselectedFile = event => {
    this.setState({
      selectedFile: event.target.files[0],
      loaded: 0
    });

    const objectURL = window.URL.createObjectURL(event.target.files[0]);
    const audio = new Audio(objectURL);
    const stream = audio.captureStream();

    audio.play().then(_ => {
      this.startUserMedia(stream);
    }); // stream now has input
  };
© www.soinside.com 2019 - 2024. All rights reserved.