README.md 6.74 KB
Newer Older
Soumith Chintala's avatar
Soumith Chintala committed
1
torchaudio: an audio library for PyTorch
Vincent QB's avatar
Vincent QB committed
2
========================================
Soumith Chintala's avatar
Soumith Chintala committed
3

4
5
[![Build Status](https://travis-ci.org/pytorch/audio.svg?branch=master)](https://travis-ci.org/pytorch/audio)

jamarshon's avatar
jamarshon committed
6
The aim of torchaudio is to apply [PyTorch](https://github.com/pytorch/pytorch) to
7
the audio domain. By supporting PyTorch, torchaudio follows the same philosophy
jamarshon's avatar
jamarshon committed
8
9
of providing strong GPU acceleration, having a focus on trainable features through
the autograd system, and having consistent style (tensor names and dimension names).
10
11
Therefore, it is primarily a machine learning library and not a general signal
processing library. The benefits of Pytorch is be seen in torchaudio through
jamarshon's avatar
jamarshon committed
12
13
14
having all the computations be through Pytorch operations which makes it easy
to use and feel like a natural extension.

15
- [Support audio I/O (Load files, Save files)](http://pytorch.org/audio/)
16
  - Load the following formats into a torch Tensor using sox
17
18
19
    - mp3, wav, aac, ogg, flac, avr, cdda, cvs/vms,
    - aiff, au, amr, mp2, mp4, ac3, avi, wmv,
    - mpeg, ircam and any other format supported by libsox.
20
    - [Kaldi (ark/scp)](http://pytorch.org/audio/kaldi_io.html)
21
22
- [Dataloaders for common audio datasets (VCTK, YesNo)](http://pytorch.org/audio/datasets.html)
- Common audio transforms
jamarshon's avatar
jamarshon committed
23
    - [Spectrogram, AmplitudeToDB, MelScale, MelSpectrogram, MFCC, MuLawEncoding, MuLawDecoding, Resample](http://pytorch.org/audio/transforms.html)
24
- Compliance interfaces: Run code using PyTorch that align with other libraries
jamarshon's avatar
jamarshon committed
25
    - [Kaldi: spectrogram, fbank, mfcc, resample_waveform](https://pytorch.org/audio/compliance.kaldi.html)
Soumith Chintala's avatar
Soumith Chintala committed
26
27
28

Dependencies
------------
29
* pytorch (nightly version needed for development)
Soumith Chintala's avatar
Soumith Chintala committed
30
* libsox v14.3.2 or above
31
* [optional] vesis84/kaldi-io-for-python commit cb46cb1f44318a5d04d4941cf39084c5b021241e or above
Soumith Chintala's avatar
Soumith Chintala committed
32
33
34
35
36
37
38
39
40
41

Quick install on
OSX (Homebrew):
```bash
brew install sox
```
Linux (Ubuntu):
```bash
sudo apt-get install sox libsox-dev libsox-fmt-all
```
42
43
44
45
Anaconda
```bash
conda install -c conda-forge sox
```
Soumith Chintala's avatar
Soumith Chintala committed
46
47
48
49

Installation
------------

jamarshon's avatar
jamarshon committed
50
51
### Binaries

52
53
54
55
56
To install the latest version using anaconda, run:
```
conda install -c pytorch torchaudio
```

57
To install the latest pip wheels, run:
jamarshon's avatar
jamarshon committed
58
59

```
60
61
pip install torchaudio -f https://download.pytorch.org/whl/torch_stable.html
```
jamarshon's avatar
jamarshon committed
62

63
64
65
(If you do not have torch already installed, this will default to installing
torch from PyPI. If you need a different torch configuration, preinstall torch
before running this command.)
jamarshon's avatar
jamarshon committed
66

67
68
At the moment, there is no automated nightly build process, but we occasionally
build nightlies based on PyTorch nightlies by hand following the instructions in
Mingbo Wan's avatar
Mingbo Wan committed
69
[packaging](packaging).  To install the latest nightly via pip, run:
jamarshon's avatar
jamarshon committed
70

71
```
Mingbo Wan's avatar
Mingbo Wan committed
72
pip install numpy
Vincent QB's avatar
Vincent QB committed
73
pip install --pre torchaudio -f https://download.pytorch.org/whl/nightly/torch_nightly.html
jamarshon's avatar
jamarshon committed
74
75
```

Mingbo Wan's avatar
Mingbo Wan committed
76
77
78
79
80
81
82
To install the latest nightly via conda, run:

```
conda install -y -c pytorch-nightly torchaudio
```


jamarshon's avatar
jamarshon committed
83
84
85
86
87
### From Source

If your system configuration is not among the supported configurations
above, you can build from source.

Soumith Chintala's avatar
Soumith Chintala committed
88
```bash
Soumith Chintala's avatar
Soumith Chintala committed
89
# Linux
Soumith Chintala's avatar
Soumith Chintala committed
90
python setup.py install
Soumith Chintala's avatar
Soumith Chintala committed
91

92
# OSX
Soumith Chintala's avatar
Soumith Chintala committed
93
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
Soumith Chintala's avatar
Soumith Chintala committed
94
95
96
97
98
99
100
```

Quick Usage
-----------

```python
import torchaudio
Vincent QB's avatar
Vincent QB committed
101
102
waveform, sample_rate = torchaudio.load('foo.mp3')  # load tensor from file
torchaudio.save('foo_save.mp3', waveform, sample_rate)  # save tensor to file
Soumith Chintala's avatar
Soumith Chintala committed
103
104
105
```

API Reference
Vincent QB's avatar
Vincent QB committed
106
-------------
SeanNaren's avatar
SeanNaren committed
107

108
API Reference is located here: http://pytorch.org/audio/
Vincent QB's avatar
Vincent QB committed
109
110
111
112

Conventions
-----------

jamarshon's avatar
jamarshon committed
113
With torchaudio being a machine learning library and built on top of PyTorch,
114
115
torchaudio is standardized around the following naming conventions. Tensors are
assumed to have channel as the first dimension and time as the last
jamarshon's avatar
jamarshon committed
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
dimension (when applicable). This makes it consistent with PyTorch's dimensions.
For size names, the prefix `n_` is used (e.g. "a tensor of size (`n_freq`, `n_mel`)")
whereas dimension names do not have this prefix (e.g. "a tensor of
dimension (channel, time)")

* `waveform`: a tensor of audio samples with dimensions (channel, time)
* `sample_rate`: the rate of audio dimensions (samples per second)
* `specgram`: a tensor of spectrogram with dimensions (channel, freq, time)
* `mel_specgram`: a mel spectrogram with dimensions (channel, mel, time)
* `hop_length`: the number of samples between the starts of consecutive frames
* `n_fft`: the number of Fourier bins
* `n_mel`, `n_mfcc`: the number of mel and MFCC bins
* `n_freq`: the number of bins in a linear spectrogram
* `min_freq`: the lowest frequency of the lowest band in a spectrogram
* `max_freq`: the highest frequency of the highest band in a spectrogram
* `win_length`: the length of the STFT window
132
* `window_fn`: for functions that creates windows e.g. `torch.hann_window`
jamarshon's avatar
jamarshon committed
133

Vincent QB's avatar
Vincent QB committed
134
Transforms expect and return the following dimensions.
jamarshon's avatar
jamarshon committed
135
136
137

* `Spectrogram`: (channel, time) -> (channel, freq, time)
* `AmplitudeToDB`: (channel, freq, time) -> (channel, freq, time)
138
* `MelScale`: (channel, freq, time) -> (channel, mel, time)
jamarshon's avatar
jamarshon committed
139
140
141
142
143
* `MelSpectrogram`: (channel, time) -> (channel, mel, time)
* `MFCC`: (channel, time) -> (channel, mfcc, time)
* `MuLawEncode`: (channel, time) -> (channel, time)
* `MuLawDecode`: (channel, time) -> (channel, time)
* `Resample`: (channel, time) -> (channel, time)
Tomás Osório's avatar
Tomás Osório committed
144
* `Fade`: (channel, time) -> (channel, time)
Tomás Osório's avatar
Tomás Osório committed
145
* `Vol`: (channel, time) -> (channel, time)
jamarshon's avatar
jamarshon committed
146

Vincent QB's avatar
Vincent QB committed
147
Complex numbers are supported via tensors of dimension (..., 2), and torchaudio provides `complex_norm` and `angle` to convert such a tensor into its magnitude and phase. Here, and in the documentation, we use an ellipsis "..." as a placeholder for the rest of the dimensions of a tensor, e.g. optional batching and channel dimensions.
148

jamarshon's avatar
jamarshon committed
149
150
151
152
153
154
155
156
157
158
159
160
Contributing Guidelines
-----------------------

Please let us know if you encounter a bug by filing an [issue](https://github.com/pytorch/audio/issues).

We appreciate all contributions. If you are planning to contribute back
bug-fixes, please do so without any further discussion.

If you plan to contribute new features, utility functions or extensions to the
core, please first open an issue and discuss the feature with us. Sending a PR
without discussion might end up resulting in a rejected PR, because we might be
taking the core in a different direction than you might be aware of.
Vincent QB's avatar
Vincent QB committed
161
162
163
164
165
166
167

Disclaimer on Datasets
----------------------

This is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset's license.

If you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!