お客様のマイクから音声を録音する方法

François Beaufort
François Beaufort

ウェブ プラットフォームで Media Capture と Streams API を使用すると、ユーザーのカメラとマイクにアクセスできます。getUserMedia() メソッドは、メディア ストリームとしてキャプチャするためにカメラやマイクにアクセスするようユーザーに求めます。このストリームは、MediaRecorder API を使用して録画したり、ネットワークを介して他のユーザーと共有したりできます。録画は、showOpenFilePicker() メソッドを使用してローカル ファイルに保存できます。

次の例は、ユーザーのマイクから音声を WebM 形式で録音し、録音をユーザーのファイル システムに保存する方法を示しています。

let stream;
let recorder;

startMicrophoneButton.addEventListener("click", async () => {
  // Prompt the user to use their microphone.
  stream = await navigator.mediaDevices.getUserMedia({ audio: true });
  recorder = new MediaRecorder(stream);
});

stopMicrophoneButton.addEventListener("click", () => {
  // Stop the stream.
  stream.getTracks().forEach(track => track.stop());
});

startRecordButton.addEventListener("click", async () => {
  // For the sake of more legible code, this sample only uses the
  // `showSaveFilePicker()` method. In production, you need to
  // cater for browsers that don't support this method, as
  // outlined in https://web.dev/patterns/files/save-a-file/.

  // Prompt the user to choose where to save the recording file.
  const suggestedName = "microphone-recording.webm";
  const handle = await window.showSaveFilePicker({ suggestedName });
  const writable = await handle.createWritable();

  // Start recording.
  recorder.start();
  recorder.addEventListener("dataavailable", async (event) => {
    // Write chunks to the file.
    await writable.write(event.data);
    if (recorder.state === "inactive") {
      // Close the file when the recording stops.
      await writable.close();
    }
  });
});

stopRecordButton.addEventListener("click", () => {
  // Stop the recording.
  recorder.stop();
});

ブラウザ サポート

MediaDevices.getUserMedia()

対応ブラウザ

  • 53
  • 12
  • 36
  • 11

ソース

MediaRecorder API

対応ブラウザ

  • 47
  • 79
  • 25
  • 14.1

ソース

File System Access API の showSaveFilePicker()

対応ブラウザ

  • 86
  • 86
  • x
  • x

ソース

関連情報

デモ

デモを開く