{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Audio

Noise Reduction

Audio Noise Reduction

การลดเสียงรบกวน (Noise Reduction) คือกระบวนการประมวลผลเสียงที่ลดหรือกำจัดเสียงที่ไม่พึงประสงค์จากการบันทึกเสียง เช่น เสียงฮัม เสียงฟู่ เสียงพื้นหลัง หรือสัญญาณรบกวนจากอุปกรณ์อิเล็กทรอนิกส์

รายละเอียดทางเทคนิค

เทคนิคหลัก: Spectral subtraction (วิเคราะห์โปรไฟล์เสียงรบกวนแล้วลบออกจากสเปกตรัม), Wiener filter (กรองตามสถิติ), Gate/Expander (ลดสัญญาณต่ำกว่า threshold) และ deep learning (เช่น RNNoise ที่ใช้ GRU network ประมวลผลแบบเรียลไทม์) เทคนิค spectral gating ใช้ noise profile เป็น fingerprint เพื่อระบุและลดส่วนประกอบความถี่ที่เป็นเสียงรบกวน

ตัวอย่าง

```javascript
// Noise Reduction: Web Audio API example
const audioCtx = new AudioContext();
const response = await fetch('audio.mp3');
const buffer = await audioCtx.decodeAudioData(await response.arrayBuffer());
const source = audioCtx.createBufferSource();
source.buffer = buffer;
source.connect(audioCtx.destination);
source.start();
```

เครื่องมือที่เกี่ยวข้อง

คำศัพท์ที่เกี่ยวข้อง