1. 14 Jul, 2020 4 commits
  2. 13 Jul, 2020 1 commit
  3. 12 Jul, 2020 1 commit
  4. 08 Jul, 2020 3 commits
  5. 06 Jul, 2020 2 commits
  6. 01 Jul, 2020 6 commits
  7. 30 Jun, 2020 1 commit
  8. 29 Jun, 2020 1 commit
  9. 26 Jun, 2020 2 commits
  10. 25 Jun, 2020 2 commits
    • moto's avatar
      Add load function (#731) · 793eeab8
      moto authored
      This is a part of PRs to add new "sox_io" backend. #726 and depends on #718 and #728 .
      
      This PR adds `load` function to "sox_io" backend, which is  tested on the following audio formats;
       - `wav`
       - `mp3`
       - `flac`
       - `ogg/vorbis` *
      
      By default, "sox_io" backend returns Tensor with `float32` dtype and the shape of `[channel, time]`. The samples are normalized to fit in the range of `[-1.0, 1.0]`.
      
      Unlike existing "sox" backend, the new `load` function can handle WAV file natively, when the input format is WAV with integer type, (such as 32-bit signed integer, 16-bit signed integer and 8-bit unsigned integer) by providing `normalize=False`, this function can return integer Tensor, where the samples are expressed within the whole range of the corresponding dtype, that is, `int32` tensor for `32-bit PCM`, `int16` for `16-bit PCM` and `uint8` for `8-bit PCM`. This behavior follows [scipy.io.wavfile.read](https://docs.scipy.org/doc/scipy/reference/generated/scipy.io.wavfile.read.html). `normalize` parameter has no effect for other formats and the load function always return normalized value with `float32` Tensor.
      
      __* Note__ The current binary distribution of torchaudio does not contain `ogg/vorbis` and `opus` codecs. To handle these files, one needs to build torchaudio from the source with proper codecs in the system.
      
      __Note 2__ Since this PR, `scipy` becomes required module for running test. 
      793eeab8
    • moto's avatar
      0f0d0af3
  11. 24 Jun, 2020 2 commits
  12. 23 Jun, 2020 5 commits
  13. 22 Jun, 2020 1 commit
  14. 19 Jun, 2020 1 commit
    • moto's avatar
      Add TorchScript-able "info" func to sox_io backend (#728) · 88fccd14
      moto authored
      This is a part of PRs to add new "sox_io" backend #726, and depends on #718.
      
      This PR adds `info` function to "sox_io" backend, which allows users to fetch some metadata of an audio file. 
      At this moment, the information retrieved are;
      
       - Number of samples in the audio file
       - Sampling rate
       - Number of channels
      88fccd14
  15. 18 Jun, 2020 3 commits
  16. 17 Jun, 2020 1 commit
  17. 16 Jun, 2020 3 commits
  18. 15 Jun, 2020 1 commit