audio icon indicating copy to clipboard operation
audio copied to clipboard

Data manipulation and transformation for audio signal processing, powered by PyTorch

Results 324 audio issues
Sort by recently updated
recently updated
newest added

Differential Revision: D53400249

fb-exported
CLA Signed

### 🚀 The feature I have a use case for convolving two tensors with dtypes torch.float16 or torch.bfloat16 containing interleaved complex data. ### Motivation, pitch I have a couple DSP...

### 🐛 Describe the bug Repro: ```python import subprocess import torch import torchaudio b, t, u, v = 33, 256, 64, 4096 print( torchaudio.functional.rnnt_loss( torch.zeros((b, t, u, v), dtype=torch.float16, device='cuda'),...

### 🐛 Describe the bug If I repeatedly run the following script, it will fail before reaching `"End"` most of the time. About 75% of the time I run the...

### 🚀 The feature specify `fmin` and `fmax` for Spectrogram like `MelSpectrogram`. ### Motivation, pitch We can specify `fmin` and `fmax` for `MelSpectrogram`, but we cannot for `Spectrogram`. If we...

Please ignore, I'm just trying to debug a PR in pytorch core https://github.com/pytorch/pytorch/pull/107131 that made some torchaudio tests fail https://github.com/pytorch/pytorch/issues/107531

CLA Signed

### 🐛 Describe the bug Hi I am trying to run locally the librispeech_conformer_rnnt ASR example given [here](https://github.com/pytorch/audio/tree/main/examples/asr/librispeech_conformer_rnnt). I installed the nightly versions of PyTorch and TorchAudio and the mentioned...

### 🚀 The feature Currently, `torchaudio.functional.resample` can only resample at regular time points and the period is determined by `orig_freq` and `new_freq`. Is it possible to resample at arbitrary time...

### 🐛 Describe the bug If the input is a video, `torchaudio.info().num_frames` returns the incorrect result. For example: ```python import torchaudio from subprocess import check_call url = "https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" check_call(["wget", url,...

### 📚 The doc issue https://pytorch.org/audio/stable/generated/torchaudio.transforms.Vol.html The current doc for `torchaudio.transforms.Vol` just says "Adjust volume of waveform." but it also clamps the output using `torch.clamp(waveform, -1, 1)` which can be...