{# 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

Limiter

Audio Limiter

A compressor with a very high ratio that prevents audio from exceeding a set maximum level.

Teknik Detay

Audio limiter algorithms exploit psychoacoustic masking — louder sounds make nearby quieter frequencies inaudible. MP3 (MPEG-1 Layer 3) uses the Modified Discrete Cosine Transform (MDCT) and was revolutionary in 1993. AAC improves on MP3 with better spectral resolution and support for more channels. Opus (RFC 6716) combines speech (SILK) and audio (CELT) codecs and is optimal for VoIP, streaming, and interactive applications with latency requirements under 20ms.

Ornek

```javascript
// Limiter: 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();
```

Ilgili Araclar

Ilgili Terimler