نحوه ضبط صدا از میکروفون کاربر

فرانسوا بوفور
François Beaufort

دسترسی به دوربین و میکروفون کاربر در بستر وب با Media Capture and 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

منبع

API دسترسی به فایل سیستم showSaveFilePicker()

پشتیبانی مرورگر

  • 86
  • 86
  • ایکس
  • ایکس

منبع

بیشتر خواندن

نسخه ی نمایشی

نسخه ی نمایشی را باز کنید