dc655321
Major Contributor
- Joined
- Mar 4, 2018
- Messages
- 1,601
- Likes
- 2,272
Can't think of a shorter "sound" at the moment, nor how to make one.
A wee bit of Python?
10 seconds of impulses at 100 Hz:
Code:
import numpy as np
import soundfile as sf
data = np.zeros(44100)
data[::441] = np.sqrt(2)/2
track = np.tile(data, 10)
stereo = np.column_stack((track, track))
sf.write('100hz_3dB_impulse.flac', stereo, 44100, subtype='PCM_16')
buzzzzzzz.
It will never make the "recommended listening" list.[/code]