Discover functions built by the community. Run them instantly via API or clean UI.
Generates 10 white noise tracks (16-bit mono WAV) with random durations between user-defined limits, smooth fade-in/out, and packages them into a ZIP file. ⚙️ Inputs min_duration (int) — minimum duration of each noise file, in seconds. max_duration (int) — maximum duration of each noise file, in seconds. sample_rate (int) — number of samples per second (e.g., 44100 for CD quality). amplitude (float) — overall loudness from 0.0 (silent) to 1.0 (maximum volume). fade_duration (float) — fade-in and fade-out time in seconds for smoother transitions. 📦 Output Returns a .zip file containing all generated white noise WAV tracks.
Generates a white noise sound (16-bit mono WAV) of customizable duration, sample rate, and amplitude, then returns the file. ⚙️ Inputs duration_seconds (int) — total duration of the generated noise in seconds. sample_rate (int) — number of samples per second (e.g., 44100 for CD quality). amplitude (float) — loudness from 0.0 (silent) to 1.0 (max volume). 📦 Output Returns the .wav file containing the generated white noise.