1. 28 Jun, 2022 3 commits
    • hwangjeff's avatar
      Add 0.12.0 to version compatibility matrix (#2513) · d3b4ce68
      hwangjeff authored
      Summary: Pull Request resolved: https://github.com/pytorch/audio/pull/2513
      
      Reviewed By: mthrok
      
      Differential Revision: D37491994
      
      Pulled By: hwangjeff
      
      fbshipit-source-id: 2c164bcec39342fd94abf4cc148d96dc9844699e
      d3b4ce68
    • moto's avatar
      Refactor FilterGraph interface (#2508) · 0dd57236
      moto authored
      Summary:
      FilterGraph is necessary for StreamWriter when saving video as
      Tensor array format cannot express commonot video formats like yub420.
      
      The current implementation of FilterGraph is specific to StreamReader,
      as it takes AVCodecParameters object. Not individual parameters.
      
      This PR refactor FilterGraph interface so that it can be constructed
      from more primitive information.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2508
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37466033
      
      Pulled By: mthrok
      
      fbshipit-source-id: 8414e985da7579c2dfe260b4dccd2afe113bb573
      0dd57236
    • moto's avatar
      Refactor AVDictionary clean up (#2507) · 0ad03adf
      moto authored
      Summary:
      Small clean up in ffmpeg binding code.
      
      1. Make `get_option_dict` and `clean_up_dict` public utility
      2. Merge the exception into `clean_up_dict`
      3. Get rid of custom string join function and use `c10::Join`.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2507
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37466022
      
      Pulled By: mthrok
      
      fbshipit-source-id: 44b769ac6ff1ab20e6d6ae086cd1447deacb5969
      0ad03adf
  2. 27 Jun, 2022 5 commits
  3. 24 Jun, 2022 1 commit
  4. 23 Jun, 2022 1 commit
  5. 21 Jun, 2022 1 commit
    • Sean Kim's avatar
      Create musdb handler and tests (#2484) · b92a8a09
      Sean Kim authored
      Summary:
      Create dataset handler and tests for new dataset. Manually tested and unit tested to test validity. Pre-commit ran for style checks.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2484
      
      Reviewed By: carolineechen, nateanl
      
      Differential Revision: D37250556
      
      Pulled By: skim0514
      
      fbshipit-source-id: d2c8d73d22fd9d7282026265676f3eab1e178d51
      b92a8a09
  6. 20 Jun, 2022 1 commit
  7. 17 Jun, 2022 1 commit
  8. 16 Jun, 2022 1 commit
  9. 15 Jun, 2022 7 commits
  10. 14 Jun, 2022 2 commits
  11. 13 Jun, 2022 2 commits
  12. 10 Jun, 2022 2 commits
  13. 08 Jun, 2022 5 commits
  14. 07 Jun, 2022 7 commits
  15. 06 Jun, 2022 1 commit
    • moto's avatar
      Set the default ffmpeg log level to FATAL (#2447) · 4e761081
      moto authored
      Summary:
      With the default log-level, completely sane operation like converting
      YUV to RGB issues bunch of warnings like
      
      `[swscaler @ 0x128aa8000] No accelerated colorspace conversion found from yuv420p to rgb24.`
      
      This commit sets the log level to FATAL.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2447
      
      Reviewed By: hwangjeff
      
      Differential Revision: D36938728
      
      Pulled By: mthrok
      
      fbshipit-source-id: 39c2e6a4307f1eac577fd606e17ab0f298079b54
      4e761081