Skip to content

Releases: pytorch/audio

TorchAudio 2.8.0 release

06 Aug 17:08
6e1c7fe
Compare
Choose a tag to compare

Copy pasting update from #3902 (comment):

Deprecated APIs

Most APIs marked as "Drop" are now explicitly deprecated, raising deprecation warnings in the docs, and when using them from Python. They will be removed in the next 2.9 version.

Migration of load() and save() to TorchCodec

As we mentioned, we are consolidating the decoding and encoding capabilities of PyTorch in TorchCodec.

torchaudio.load() and torchaudio.save() are some of the most popular TorchAudio APIs, so for convenience we are providing torchaudio.load_with_torchcodec() and torchaudio.save_with_torchcodec(), which can largely be used as drop-in replacements. However, we do encourage users to directly migrate to TorchCodec's AudioDecoder() and AudioEncoder().

In future versions, torchaudio.load() and torchaudio.save() will still exist, but their underlying implementation will be relying on torchaudio.load_with_torchcodec() and torchaudio.save_with_torchcodec().

We hope for this migration to be as smooth as possible - most users should just need to pip install torchcodec, and things should still work as-is.

TorchCodec doesn't support Windows yet, but we're working hard on it. Please bear with us.

C++ and CUDA extension

We mentioned that we were exploring options to retain the C++-backed APIs, which are currently slated for deletion. Specifically: forced_align, lfilter, overdrive, RNNT, and CUCTC.

While this isn't something I can assert with 100% certainty, we are now more confident that we'll be able to preserve these extensions by porting them to Pytorch's new "stable ABI" operators. We are actively working on it.

TorchAudio 2.7.1 Release

04 Jun 18:21
95c61b4
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.7.1 There are no new features added.

Note

We are in the process of refactoring TorchAudio and transitioning it into a maintenance phase. This process will include removing some user-facing features. Our main goals are to reduce redundancies with the rest of the PyTorch ecosystem, make it easier to maintain, and create a version of TorchAudio that is more tightly scoped to its strengths: processing audio data for ML. Please see our community message for more details.

TorchAudio 2.7.0 Release

24 Apr 15:24
654fee8
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.7. There are no new features added.

Note

We are in the process of refactoring TorchAudio and transitioning it into a maintenance phase. This process will include removing some user-facing features. Our main goals are to reduce redundancies with the rest of the PyTorch ecosystem, make it easier to maintain, and create a version of TorchAudio that is more tightly scoped to its strengths: processing audio data for ML. Please see our community message for more details.

TorchAudio 2.6.0 Release

29 Jan 17:29
d883142
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.6. There are no new features added.

The following fixes / improvement were made:

  • Fix incorrect audio trimming with negative index #3860
  • Fix vad return zero output when nonzero pre_trigger_time is requested #3866
  • ROCM compatibility improvements: #3840, #3843

TorchAudio 2.5.0 Release

17 Oct 16:24
56bc006
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.5. There are no new features added.

This release contains one improvement:

  • reduce computations in backprop of lfilter #3831

TorchAudio 2.4.1 Release

04 Sep 20:06
e8cbe17
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.4.1 patch release. There are no new features added.

TorchAudio 2.4.0 Release

24 Jul 18:54
69d4077
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.4. There are no new features added.

This release contains 2 fixes:

  • Fix view size error when backpropagating through lfilter #3794
  • [BC-Breaking] Fix model downloading in bento #3803

TorchAudio 2.3.1 Release

05 Jun 19:22
3edcf69
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.3.1 patch release. There are no new features added.

TorchAudio 2.3.0 Release

24 Apr 16:19
952ea74
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.3.0 patch release. There are no new features added.

This release contains minor documentation and code quality improvements (#3734, #3748, #3757, #3759)

TorchAudio 2.2.2 Release

28 Mar 15:39
cefdb36
Compare
Choose a tag to compare

This release is compatible with PyTorch 2.2.2 patch release. There are no new features added.