1. 18 Sep, 2024 2 commits
  2. 06 Sep, 2024 1 commit
  3. 03 Sep, 2024 1 commit
  4. 02 Sep, 2024 1 commit
  5. 16 Oct, 2023 3 commits
  6. 25 Aug, 2023 1 commit
  7. 14 Jun, 2023 1 commit
  8. 08 May, 2023 1 commit
  9. 05 May, 2023 1 commit
  10. 09 Dec, 2022 4 commits
    • moto's avatar
      Update author and maintainer info (#2911) · b90d7988
      moto authored
      Summary: Pull Request resolved: https://github.com/pytorch/audio/pull/2911
      
      Reviewed By: carolineechen
      
      Differential Revision: D41887854
      
      Pulled By: mthrok
      
      fbshipit-source-id: eb91773ec67b4cda2d70733df450956d83742509
      b90d7988
    • Moto Hira's avatar
      Fix duplicated memory allocation in StreamWriter (#2906) · 4adbd54a
      Moto Hira authored
      Summary:
      Pull Request resolved: https://github.com/pytorch/audio/pull/2906
      
      The correct way to create AVFormatContext* for output is to pass an address of an uninitialized *AVFormatContext struct to `avformat_alloc_output_context2` function.
      
      The current code pre-allocates AVFormatContext* with `avformat_alloc_context`, then this allocated object is lost inside of `avformat_alloc_output_context2`.
      
      Reviewed By: xiaohui-zhang
      
      Differential Revision: D41865685
      
      fbshipit-source-id: 9a9dc83b5acfe9b450f191fe716c85ebb5a5d842
      4adbd54a
    • Moto Hira's avatar
      Fix wrong frame allocation in StreamWriter (#2905) · 30a1070c
      Moto Hira authored
      Summary:
      Pull Request resolved: https://github.com/pytorch/audio/pull/2905
      
      In StreamWriter, if the tensor format is different from the encoding format, then a FilterGraph object is automatically inserted to convert the format.
      
      The FilterGraph object operates on AVFrames. The input AVFrame must be allocated by us, but the output AVFrames is filled by FilterGraph, thus no need to allocate it.
      
      Now the output AVFrame is used as input to encoder regardless of whether FilterGraph was inserted. Thus the output AVFrame has to be manually allocated by us when FilterGraph is not used.
      
      The current code flips this condition and incorrectly allocates AVFrame when FilterGraph is present and does not allocate otherwise.
      
      This commit fix that.
      
      Reviewed By: xiaohui-zhang
      
      Differential Revision: D41866198
      
      fbshipit-source-id: 40799c147dc8166a979ecfb58ed8e502539a6aed
      30a1070c
    • Andrey Talman's avatar
      fbf968c0
  11. 04 Dec, 2022 1 commit
  12. 18 Nov, 2022 4 commits
  13. 16 Nov, 2022 4 commits
  14. 15 Nov, 2022 1 commit
  15. 03 Nov, 2022 2 commits
  16. 02 Nov, 2022 1 commit
  17. 29 Oct, 2022 1 commit
  18. 20 Oct, 2022 1 commit
  19. 19 Oct, 2022 4 commits
  20. 18 Oct, 2022 1 commit
  21. 17 Oct, 2022 1 commit
  22. 14 Oct, 2022 2 commits
  23. 13 Oct, 2022 1 commit
    • moto's avatar
      Fix CTCDecoder doc (#2766) · bd37611b
      moto authored
      Summary:
      * Document `__call__` instead of `__init__`
      * List CTCHypothesis first as it is used in combination with CTCDecoder
      * Fix indentation of score method docstring
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2766
      
      Reviewed By: carolineechen
      
      Differential Revision: D40349388
      
      Pulled By: mthrok
      
      fbshipit-source-id: 5e512e6c2b29d3533eb62d09b289154ccd1abf4c
      bd37611b