उपयोगकर्ता के माइक्रोफ़ोन से ऑडियो रिकॉर्ड करने का तरीका

François Beaufort
François Beaufort

वेब प्लैटफ़ॉर्म पर मीडिया कैप्चर और स्ट्रीम एपीआई की मदद से, उपयोगकर्ता का कैमरा और माइक्रोफ़ोन ऐक्सेस किया जा सकता है. 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 एपीआई

ब्राउज़र सहायता

  • 47
  • 79
  • 25
  • 78 जीबी में से

सोर्स

File System Access API का showSaveFileChooseer()

ब्राउज़र सहायता

  • 86
  • 86
  • x
  • x

सोर्स

इसके बारे में और पढ़ें

डेमो

डेमो खोलें