torchaudio.functional.treble_biquad¶
- torchaudio.functional.treble_biquad(waveform: Tensor, sample_rate: int, gain: float, central_freq: float = 3000, Q: float = 0.707) Tensor[source]¶
- Design a treble tone-control effect. Similar to SoX implementation. - Parameters:
- waveform (Tensor) – audio waveform of dimension of (…, time) 
- sample_rate (int) – sampling rate of the waveform, e.g. 44100 (Hz) 
- gain (float or torch.Tensor) – desired gain at the boost (or attenuation) in dB. 
- central_freq (float or torch.Tensor, optional) – central frequency (in Hz). (Default: - 3000)
- Q (float or torch.Tensor, optional) – https://en.wikipedia.org/wiki/Q_factor (Default: - 0.707).
 
- Returns:
- Waveform of dimension of (…, time) 
- Return type:
- Tensor