Skip to main content

Volume Ducking

Advanced volume control techniques for managing multiple audio channels.

Coming Soon​

This section is under development. For now, check out our live demo for volume control examples.

Quick Example​

import { setChannelVolume, getChannelVolume } from 'audio-channel-queue';

// Basic volume control
setChannelVolume(0, 0.5); // 50% volume
setChannelVolume(1, 0.8); // 80% volume

// Get current volume
const currentVolume = getChannelVolume(0);

References​