torchaudio 2.6.0__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of torchaudio might be problematic. Click here for more details.

Files changed (144) hide show
  1. torchaudio/__init__.py +53 -0
  2. torchaudio/_backend/__init__.py +61 -0
  3. torchaudio/_backend/backend.py +53 -0
  4. torchaudio/_backend/common.py +52 -0
  5. torchaudio/_backend/ffmpeg.py +334 -0
  6. torchaudio/_backend/soundfile.py +54 -0
  7. torchaudio/_backend/soundfile_backend.py +457 -0
  8. torchaudio/_backend/sox.py +91 -0
  9. torchaudio/_backend/utils.py +317 -0
  10. torchaudio/_extension/__init__.py +74 -0
  11. torchaudio/_extension/utils.py +180 -0
  12. torchaudio/_internal/__init__.py +10 -0
  13. torchaudio/_internal/module_utils.py +113 -0
  14. torchaudio/backend/__init__.py +8 -0
  15. torchaudio/backend/_no_backend.py +25 -0
  16. torchaudio/backend/_sox_io_backend.py +294 -0
  17. torchaudio/backend/common.py +13 -0
  18. torchaudio/backend/no_backend.py +14 -0
  19. torchaudio/backend/soundfile_backend.py +14 -0
  20. torchaudio/backend/sox_io_backend.py +14 -0
  21. torchaudio/compliance/__init__.py +5 -0
  22. torchaudio/compliance/kaldi.py +813 -0
  23. torchaudio/datasets/__init__.py +47 -0
  24. torchaudio/datasets/cmuarctic.py +157 -0
  25. torchaudio/datasets/cmudict.py +186 -0
  26. torchaudio/datasets/commonvoice.py +86 -0
  27. torchaudio/datasets/dr_vctk.py +121 -0
  28. torchaudio/datasets/fluentcommands.py +108 -0
  29. torchaudio/datasets/gtzan.py +1118 -0
  30. torchaudio/datasets/iemocap.py +147 -0
  31. torchaudio/datasets/librilight_limited.py +111 -0
  32. torchaudio/datasets/librimix.py +133 -0
  33. torchaudio/datasets/librispeech.py +174 -0
  34. torchaudio/datasets/librispeech_biasing.py +189 -0
  35. torchaudio/datasets/libritts.py +168 -0
  36. torchaudio/datasets/ljspeech.py +107 -0
  37. torchaudio/datasets/musdb_hq.py +139 -0
  38. torchaudio/datasets/quesst14.py +136 -0
  39. torchaudio/datasets/snips.py +157 -0
  40. torchaudio/datasets/speechcommands.py +183 -0
  41. torchaudio/datasets/tedlium.py +218 -0
  42. torchaudio/datasets/utils.py +54 -0
  43. torchaudio/datasets/vctk.py +143 -0
  44. torchaudio/datasets/voxceleb1.py +309 -0
  45. torchaudio/datasets/yesno.py +89 -0
  46. torchaudio/functional/__init__.py +127 -0
  47. torchaudio/functional/_alignment.py +128 -0
  48. torchaudio/functional/filtering.py +1670 -0
  49. torchaudio/functional/functional.py +2535 -0
  50. torchaudio/io/__init__.py +13 -0
  51. torchaudio/io/_effector.py +347 -0
  52. torchaudio/io/_playback.py +72 -0
  53. torchaudio/kaldi_io.py +144 -0
  54. torchaudio/lib/__init__.py +0 -0
  55. torchaudio/lib/_torchaudio.pyd +0 -0
  56. torchaudio/lib/libtorchaudio.pyd +0 -0
  57. torchaudio/models/__init__.py +85 -0
  58. torchaudio/models/_hdemucs.py +1008 -0
  59. torchaudio/models/conformer.py +293 -0
  60. torchaudio/models/conv_tasnet.py +330 -0
  61. torchaudio/models/decoder/__init__.py +46 -0
  62. torchaudio/models/decoder/_ctc_decoder.py +568 -0
  63. torchaudio/models/decoder/_cuda_ctc_decoder.py +187 -0
  64. torchaudio/models/deepspeech.py +84 -0
  65. torchaudio/models/emformer.py +884 -0
  66. torchaudio/models/rnnt.py +816 -0
  67. torchaudio/models/rnnt_decoder.py +339 -0
  68. torchaudio/models/squim/__init__.py +11 -0
  69. torchaudio/models/squim/objective.py +326 -0
  70. torchaudio/models/squim/subjective.py +150 -0
  71. torchaudio/models/tacotron2.py +1046 -0
  72. torchaudio/models/wav2letter.py +72 -0
  73. torchaudio/models/wav2vec2/__init__.py +45 -0
  74. torchaudio/models/wav2vec2/components.py +1167 -0
  75. torchaudio/models/wav2vec2/model.py +1579 -0
  76. torchaudio/models/wav2vec2/utils/__init__.py +7 -0
  77. torchaudio/models/wav2vec2/utils/import_fairseq.py +213 -0
  78. torchaudio/models/wav2vec2/utils/import_huggingface.py +134 -0
  79. torchaudio/models/wav2vec2/wavlm_attention.py +214 -0
  80. torchaudio/models/wavernn.py +409 -0
  81. torchaudio/pipelines/__init__.py +102 -0
  82. torchaudio/pipelines/_source_separation_pipeline.py +109 -0
  83. torchaudio/pipelines/_squim_pipeline.py +156 -0
  84. torchaudio/pipelines/_tts/__init__.py +16 -0
  85. torchaudio/pipelines/_tts/impl.py +385 -0
  86. torchaudio/pipelines/_tts/interface.py +255 -0
  87. torchaudio/pipelines/_tts/utils.py +228 -0
  88. torchaudio/pipelines/_wav2vec2/__init__.py +0 -0
  89. torchaudio/pipelines/_wav2vec2/aligner.py +87 -0
  90. torchaudio/pipelines/_wav2vec2/impl.py +1699 -0
  91. torchaudio/pipelines/_wav2vec2/utils.py +346 -0
  92. torchaudio/pipelines/rnnt_pipeline.py +380 -0
  93. torchaudio/prototype/__init__.py +0 -0
  94. torchaudio/prototype/datasets/__init__.py +4 -0
  95. torchaudio/prototype/datasets/musan.py +67 -0
  96. torchaudio/prototype/functional/__init__.py +26 -0
  97. torchaudio/prototype/functional/_dsp.py +433 -0
  98. torchaudio/prototype/functional/_rir.py +379 -0
  99. torchaudio/prototype/functional/functional.py +190 -0
  100. torchaudio/prototype/models/__init__.py +36 -0
  101. torchaudio/prototype/models/_conformer_wav2vec2.py +794 -0
  102. torchaudio/prototype/models/_emformer_hubert.py +333 -0
  103. torchaudio/prototype/models/conv_emformer.py +525 -0
  104. torchaudio/prototype/models/hifi_gan.py +336 -0
  105. torchaudio/prototype/models/rnnt.py +711 -0
  106. torchaudio/prototype/models/rnnt_decoder.py +399 -0
  107. torchaudio/prototype/pipelines/__init__.py +12 -0
  108. torchaudio/prototype/pipelines/_vggish/__init__.py +3 -0
  109. torchaudio/prototype/pipelines/_vggish/_vggish_impl.py +233 -0
  110. torchaudio/prototype/pipelines/_vggish/_vggish_pipeline.py +82 -0
  111. torchaudio/prototype/pipelines/hifigan_pipeline.py +228 -0
  112. torchaudio/prototype/pipelines/rnnt_pipeline.py +58 -0
  113. torchaudio/prototype/transforms/__init__.py +9 -0
  114. torchaudio/prototype/transforms/_transforms.py +456 -0
  115. torchaudio/sox_effects/__init__.py +10 -0
  116. torchaudio/sox_effects/sox_effects.py +272 -0
  117. torchaudio/transforms/__init__.py +75 -0
  118. torchaudio/transforms/_multi_channel.py +467 -0
  119. torchaudio/transforms/_transforms.py +2137 -0
  120. torchaudio/utils/__init__.py +11 -0
  121. torchaudio/utils/download.py +89 -0
  122. torchaudio/utils/ffmpeg_utils.py +11 -0
  123. torchaudio/utils/sox_utils.py +99 -0
  124. torchaudio/version.py +2 -0
  125. torchaudio-2.6.0.dist-info/LICENSE +25 -0
  126. torchaudio-2.6.0.dist-info/METADATA +124 -0
  127. torchaudio-2.6.0.dist-info/RECORD +144 -0
  128. torchaudio-2.6.0.dist-info/WHEEL +5 -0
  129. torchaudio-2.6.0.dist-info/top_level.txt +2 -0
  130. torio/__init__.py +8 -0
  131. torio/_extension/__init__.py +13 -0
  132. torio/_extension/utils.py +147 -0
  133. torio/io/__init__.py +9 -0
  134. torio/io/_streaming_media_decoder.py +978 -0
  135. torio/io/_streaming_media_encoder.py +502 -0
  136. torio/lib/__init__.py +0 -0
  137. torio/lib/_torio_ffmpeg4.pyd +0 -0
  138. torio/lib/_torio_ffmpeg5.pyd +0 -0
  139. torio/lib/_torio_ffmpeg6.pyd +0 -0
  140. torio/lib/libtorio_ffmpeg4.pyd +0 -0
  141. torio/lib/libtorio_ffmpeg5.pyd +0 -0
  142. torio/lib/libtorio_ffmpeg6.pyd +0 -0
  143. torio/utils/__init__.py +4 -0
  144. torio/utils/ffmpeg_utils.py +247 -0
@@ -0,0 +1,11 @@
1
+ from torio.utils import ffmpeg_utils
2
+
3
+ from . import sox_utils
4
+ from .download import download_asset
5
+
6
+
7
+ __all__ = [
8
+ "download_asset",
9
+ "sox_utils",
10
+ "ffmpeg_utils",
11
+ ]
@@ -0,0 +1,89 @@
1
+ import hashlib
2
+ import logging
3
+ from os import PathLike
4
+ from pathlib import Path
5
+ from typing import Union
6
+
7
+ import torch
8
+ from torchaudio._internal import download_url_to_file
9
+
10
+ _LG = logging.getLogger(__name__)
11
+
12
+
13
+ def _get_local_path(key):
14
+ path = Path(torch.hub.get_dir()) / "torchaudio" / Path(key)
15
+ path.parent.mkdir(parents=True, exist_ok=True)
16
+ return path
17
+
18
+
19
+ def _download(key, path, progress):
20
+ url = f"https://download.pytorch.org/torchaudio/{key}"
21
+ download_url_to_file(url, path, progress=progress)
22
+
23
+
24
+ def _get_hash(path, hash, chunk_size=1028):
25
+ m = hashlib.sha256()
26
+ with open(path, "rb") as file:
27
+ data = file.read(chunk_size)
28
+ while data:
29
+ m.update(data)
30
+ data = file.read(chunk_size)
31
+ return m.hexdigest()
32
+
33
+
34
+ def download_asset(
35
+ key: str,
36
+ hash: str = "",
37
+ path: Union[str, PathLike] = "",
38
+ *,
39
+ progress: bool = True,
40
+ ) -> str:
41
+ """Download and store torchaudio assets to local file system.
42
+
43
+ If a file exists at the download path, then that path is returned with or without
44
+ hash validation.
45
+
46
+ Args:
47
+ key (str): The asset identifier.
48
+ hash (str, optional):
49
+ The value of SHA256 hash of the asset. If provided, it is used to verify
50
+ the downloaded / cached object. If not provided, then no hash validation
51
+ is performed. This means if a file exists at the download path, then the path
52
+ is returned as-is without verifying the identity of the file.
53
+ path (path-like object, optional):
54
+ By default, the downloaded asset is saved in a directory under
55
+ :py:func:`torch.hub.get_dir` and intermediate directories based on the given `key`
56
+ are created.
57
+ This argument can be used to overwrite the target location.
58
+ When this argument is provided, all the intermediate directories have to be
59
+ created beforehand.
60
+ progress (bool): Whether to show progress bar for downloading. Default: ``True``.
61
+
62
+ Note:
63
+ Currently the valid key values are the route on ``download.pytorch.org/torchaudio``,
64
+ but this is an implementation detail.
65
+
66
+ Returns:
67
+ str: The path to the asset on the local file system.
68
+ """
69
+ path = path or _get_local_path(key)
70
+
71
+ if path.exists():
72
+ _LG.info("The local file (%s) exists. Skipping the download.", path)
73
+ else:
74
+ _LG.info("Downloading %s to %s", key, path)
75
+ _download(key, path, progress=progress)
76
+
77
+ if hash:
78
+ _LG.info("Verifying the hash value.")
79
+ digest = _get_hash(path, hash)
80
+
81
+ if digest != hash:
82
+ raise ValueError(
83
+ f"The hash value of the downloaded file ({path}), '{digest}' does not match "
84
+ f"the provided hash value, '{hash}'."
85
+ )
86
+
87
+ _LG.info("Hash validated.")
88
+
89
+ return str(path)
@@ -0,0 +1,11 @@
1
+ """Module to change the configuration of FFmpeg libraries (such as libavformat).
2
+
3
+ It affects functionalities in :py:mod:`torchaudio.io` (and indirectly :py:func:`torchaudio.load`).
4
+ """
5
+
6
+
7
+ # This file is just for BC.
8
+ def __getattr__(item):
9
+ from torio.utils import ffmpeg_utils
10
+
11
+ return getattr(ffmpeg_utils, item)
@@ -0,0 +1,99 @@
1
+ """Module to change the configuration of libsox, which is used by I/O functions like
2
+ :py:mod:`~torchaudio.backend.sox_io_backend` and :py:mod:`~torchaudio.sox_effects`.
3
+ """
4
+
5
+ from typing import Dict, List
6
+
7
+ import torchaudio
8
+
9
+ sox_ext = torchaudio._extension.lazy_import_sox_ext()
10
+
11
+
12
+ def set_seed(seed: int):
13
+ """Set libsox's PRNG
14
+
15
+ Args:
16
+ seed (int): seed value. valid range is int32.
17
+
18
+ See Also:
19
+ http://sox.sourceforge.net/sox.html
20
+ """
21
+ sox_ext.set_seed(seed)
22
+
23
+
24
+ def set_verbosity(verbosity: int):
25
+ """Set libsox's verbosity
26
+
27
+ Args:
28
+ verbosity (int): Set verbosity level of libsox.
29
+
30
+ * ``1`` failure messages
31
+ * ``2`` warnings
32
+ * ``3`` details of processing
33
+ * ``4``-``6`` increasing levels of debug messages
34
+
35
+ See Also:
36
+ http://sox.sourceforge.net/sox.html
37
+ """
38
+ sox_ext.set_verbosity(verbosity)
39
+
40
+
41
+ def set_buffer_size(buffer_size: int):
42
+ """Set buffer size for sox effect chain
43
+
44
+ Args:
45
+ buffer_size (int): Set the size in bytes of the buffers used for processing audio.
46
+
47
+ See Also:
48
+ http://sox.sourceforge.net/sox.html
49
+ """
50
+ sox_ext.set_buffer_size(buffer_size)
51
+
52
+
53
+ def set_use_threads(use_threads: bool):
54
+ """Set multithread option for sox effect chain
55
+
56
+ Args:
57
+ use_threads (bool): When ``True``, enables ``libsox``'s parallel effects channels processing.
58
+ To use mutlithread, the underlying ``libsox`` has to be compiled with OpenMP support.
59
+
60
+ See Also:
61
+ http://sox.sourceforge.net/sox.html
62
+ """
63
+ sox_ext.set_use_threads(use_threads)
64
+
65
+
66
+ def list_effects() -> Dict[str, str]:
67
+ """List the available sox effect names
68
+
69
+ Returns:
70
+ Dict[str, str]: Mapping from ``effect name`` to ``usage``
71
+ """
72
+ return dict(sox_ext.list_effects())
73
+
74
+
75
+ def list_read_formats() -> List[str]:
76
+ """List the supported audio formats for read
77
+
78
+ Returns:
79
+ List[str]: List of supported audio formats
80
+ """
81
+ return sox_ext.list_read_formats()
82
+
83
+
84
+ def list_write_formats() -> List[str]:
85
+ """List the supported audio formats for write
86
+
87
+ Returns:
88
+ List[str]: List of supported audio formats
89
+ """
90
+ return sox_ext.list_write_formats()
91
+
92
+
93
+ def get_buffer_size() -> int:
94
+ """Get buffer size for sox effect chain
95
+
96
+ Returns:
97
+ int: size in bytes of buffers used for processing audio.
98
+ """
99
+ return sox_ext.get_buffer_size()
torchaudio/version.py ADDED
@@ -0,0 +1,2 @@
1
+ __version__ = '2.6.0+cpu'
2
+ git_version = 'd8831425203385077a03c1d92cfbbe3bf2106008'
@@ -0,0 +1,25 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2017 Facebook Inc. (Soumith Chintala),
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,124 @@
1
+ Metadata-Version: 2.2
2
+ Name: torchaudio
3
+ Version: 2.6.0
4
+ Summary: An audio package for PyTorch
5
+ Home-page: https://github.com/pytorch/audio
6
+ Author: Soumith Chintala, David Pollack, Sean Naren, Peter Goldsborough, Moto Hira, Caroline Chen, Jeff Hwang, Zhaoheng Ni, Xiaohui Zhang
7
+ Author-email: soumith@pytorch.org
8
+ Maintainer: Moto Hira, Caroline Chen, Jeff Hwang, Zhaoheng Ni, Xiaohui Zhang
9
+ Maintainer-email: moto@meta.com
10
+ Classifier: Environment :: Plugins
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: BSD License
14
+ Classifier: Operating System :: MacOS :: MacOS X
15
+ Classifier: Operating System :: Microsoft :: Windows
16
+ Classifier: Operating System :: POSIX
17
+ Classifier: Programming Language :: C++
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: Implementation :: CPython
24
+ Classifier: Topic :: Multimedia :: Sound/Audio
25
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: torch==2.6.0
29
+ Dynamic: author
30
+ Dynamic: author-email
31
+ Dynamic: classifier
32
+ Dynamic: description
33
+ Dynamic: description-content-type
34
+ Dynamic: home-page
35
+ Dynamic: maintainer
36
+ Dynamic: maintainer-email
37
+ Dynamic: requires-dist
38
+ Dynamic: summary
39
+
40
+ torchaudio: an audio library for PyTorch
41
+ ========================================
42
+
43
+ [![Documentation](https://img.shields.io/badge/dynamic/json.svg?label=docs&url=https%3A%2F%2Fpypi.org%2Fpypi%2Ftorchaudio%2Fjson&query=%24.info.version&colorB=brightgreen&prefix=v)](https://pytorch.org/audio/main/)
44
+ [![Anaconda Badge](https://anaconda.org/pytorch/torchaudio/badges/downloads.svg)](https://anaconda.org/pytorch/torchaudio)
45
+ [![Anaconda-Server Badge](https://anaconda.org/pytorch/torchaudio/badges/platforms.svg)](https://anaconda.org/pytorch/torchaudio)
46
+
47
+ ![TorchAudio Logo](docs/source/_static/img/logo.png)
48
+
49
+ The aim of torchaudio is to apply [PyTorch](https://github.com/pytorch/pytorch) to
50
+ the audio domain. By supporting PyTorch, torchaudio follows the same philosophy
51
+ of providing strong GPU acceleration, having a focus on trainable features through
52
+ the autograd system, and having consistent style (tensor names and dimension names).
53
+ Therefore, it is primarily a machine learning library and not a general signal
54
+ processing library. The benefits of PyTorch can be seen in torchaudio through
55
+ having all the computations be through PyTorch operations which makes it easy
56
+ to use and feel like a natural extension.
57
+
58
+ - [Support audio I/O (Load files, Save files)](http://pytorch.org/audio/main/)
59
+ - Load a variety of audio formats, such as `wav`, `mp3`, `ogg`, `flac`, `opus`, `sphere`, into a torch Tensor using SoX
60
+ - [Kaldi (ark/scp)](http://pytorch.org/audio/main/kaldi_io.html)
61
+ - [Dataloaders for common audio datasets](http://pytorch.org/audio/main/datasets.html)
62
+ - Audio and speech processing functions
63
+ - [forced_align](https://pytorch.org/audio/main/generated/torchaudio.functional.forced_align.html)
64
+ - Common audio transforms
65
+ - [Spectrogram, AmplitudeToDB, MelScale, MelSpectrogram, MFCC, MuLawEncoding, MuLawDecoding, Resample](http://pytorch.org/audio/main/transforms.html)
66
+ - Compliance interfaces: Run code using PyTorch that align with other libraries
67
+ - [Kaldi: spectrogram, fbank, mfcc](https://pytorch.org/audio/main/compliance.kaldi.html)
68
+
69
+ Installation
70
+ ------------
71
+
72
+ Please refer to https://pytorch.org/audio/main/installation.html for installation and build process of TorchAudio.
73
+
74
+
75
+ API Reference
76
+ -------------
77
+
78
+ API Reference is located here: http://pytorch.org/audio/main/
79
+
80
+ Contributing Guidelines
81
+ -----------------------
82
+
83
+ Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md)
84
+
85
+ Citation
86
+ --------
87
+
88
+ If you find this package useful, please cite as:
89
+
90
+ ```bibtex
91
+ @article{yang2021torchaudio,
92
+ title={TorchAudio: Building Blocks for Audio and Speech Processing},
93
+ author={Yao-Yuan Yang and Moto Hira and Zhaoheng Ni and Anjali Chourdia and Artyom Astafurov and Caroline Chen and Ching-Feng Yeh and Christian Puhrsch and David Pollack and Dmitriy Genzel and Donny Greenberg and Edward Z. Yang and Jason Lian and Jay Mahadeokar and Jeff Hwang and Ji Chen and Peter Goldsborough and Prabhat Roy and Sean Narenthiran and Shinji Watanabe and Soumith Chintala and Vincent Quenneville-Bélair and Yangyang Shi},
94
+ journal={arXiv preprint arXiv:2110.15018},
95
+ year={2021}
96
+ }
97
+ ```
98
+
99
+ ```bibtex
100
+ @misc{hwang2023torchaudio,
101
+ title={TorchAudio 2.1: Advancing speech recognition, self-supervised learning, and audio processing components for PyTorch},
102
+ author={Jeff Hwang and Moto Hira and Caroline Chen and Xiaohui Zhang and Zhaoheng Ni and Guangzhi Sun and Pingchuan Ma and Ruizhe Huang and Vineel Pratap and Yuekai Zhang and Anurag Kumar and Chin-Yun Yu and Chuang Zhu and Chunxi Liu and Jacob Kahn and Mirco Ravanelli and Peng Sun and Shinji Watanabe and Yangyang Shi and Yumeng Tao and Robin Scheibler and Samuele Cornell and Sean Kim and Stavros Petridis},
103
+ year={2023},
104
+ eprint={2310.17864},
105
+ archivePrefix={arXiv},
106
+ primaryClass={eess.AS}
107
+ }
108
+ ```
109
+
110
+ Disclaimer on Datasets
111
+ ----------------------
112
+
113
+ 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.
114
+
115
+ 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!
116
+
117
+ Pre-trained Model License
118
+ -------------------------
119
+
120
+ The pre-trained models provided in this library may have their own licenses or terms and conditions derived from the dataset used for training. It is your responsibility to determine whether you have permission to use the models for your use case.
121
+
122
+ For instance, SquimSubjective model is released under the Creative Commons Attribution Non Commercial 4.0 International (CC-BY-NC 4.0) license. See [the link](https://zenodo.org/record/4660670#.ZBtWPOxuerN) for additional details.
123
+
124
+ Other pre-trained models that have different license are noted in documentation. Please checkout the [documentation page](https://pytorch.org/audio/main/).
@@ -0,0 +1,144 @@
1
+ torchaudio/utils/sox_utils.py,sha256=Wpu9cEL3EcsovNnWKWIcosRSA_LmP1XqbZ7_9ti5imI,2520
2
+ torchaudio/utils/ffmpeg_utils.py,sha256=1r5cdbhz9ZCY5jW-5_gQ5G360a2fEwd--GBFMq_TxVk,330
3
+ torchaudio/utils/download.py,sha256=QlO5md3u0bUBFTWjZpSBMaMeeqgZKm9LmwzdB5Ip7_c,2971
4
+ torchaudio/utils/__init__.py,sha256=h4Jvrb4vzdxzgJqgzA-TOUqLSZ2mRVALERR8am7BlvQ,185
5
+ torchaudio/transforms/_transforms.py,sha256=YFbbZ8nV1fBR0EGiNS3GOtFM-rLkyDUpXdPh8zNab40,89009
6
+ torchaudio/transforms/_multi_channel.py,sha256=Musw7dTu25HNjKeIcKHUDuqBmj_GC2e3TaakqJcffW8,22688
7
+ torchaudio/transforms/__init__.py,sha256=GYkPl29GcVu_QzUfnlw1QnfNsqiqgjtn1ZmfhAAMACo,1345
8
+ torchaudio/sox_effects/sox_effects.py,sha256=1K7Ngy5E1i1keSMiX0GJZbVh6n8ONH7TCb_606vqBxg,11253
9
+ torchaudio/sox_effects/__init__.py,sha256=NVN6rAkHxizmOsZgLnxjMX5qXcPkABzLE-hvTMaSbEw,272
10
+ torchaudio/prototype/transforms/_transforms.py,sha256=DSktWkL7elGrNrNWCzZ0kaB7DNZmpX0gu_8kTJzXkf8,19600
11
+ torchaudio/prototype/transforms/__init__.py,sha256=a-LNmupvUQvpo3CrTvqXudgY8G6cRGI1zy6j9oWST_o,234
12
+ torchaudio/prototype/pipelines/_vggish/_vggish_pipeline.py,sha256=Gssicwkm7Wffnk1xUUoFPSUm9_5Na0J3MZAS5OdYfGo,2795
13
+ torchaudio/prototype/pipelines/_vggish/_vggish_impl.py,sha256=2elMGpd6-RCFLBS4WkEQSErGWVNK6iFTNMz95PpTIZ4,8730
14
+ torchaudio/prototype/pipelines/_vggish/__init__.py,sha256=pkGI6k0g21XZYg6H80RO6EavTOFBNUyQkFOanr8cwtY,92
15
+ torchaudio/prototype/pipelines/rnnt_pipeline.py,sha256=6zeezoHIPo-9Sc0B19cFoJrQMybmDP1MDoUZzMFheOo,2242
16
+ torchaudio/prototype/pipelines/hifigan_pipeline.py,sha256=-HcU3w5AcCEcjVeXpIddVLJmeu52psCO4oTIOgw50WA,9882
17
+ torchaudio/prototype/pipelines/__init__.py,sha256=6x8q20JhZrPYx-GtJpLzeqetS0U6xBt70Qn6ctGpuUE,394
18
+ torchaudio/prototype/models/rnnt_decoder.py,sha256=CO8yo1OsIi0EQSn3GRTysPoUzQN-aiNWyrrv_86rzc4,16134
19
+ torchaudio/prototype/models/rnnt.py,sha256=3-O5pYW35ffEG8KwCVDQfhGp-Kj0OsP4wjzdTkdQEzo,31570
20
+ torchaudio/prototype/models/hifi_gan.py,sha256=X8mN04yQpzbOKxKmE98nFimltOOKp4FmtT2Ipxc4N3k,12816
21
+ torchaudio/prototype/models/conv_emformer.py,sha256=txtyonaqdXG6fli91WN1mkAc6SFFzUZ3fFcY713P5VM,23601
22
+ torchaudio/prototype/models/_emformer_hubert.py,sha256=Uz_hKOOzK8ul5rpBx__15_oy_pklocl8SvRgmjTg7hI,13831
23
+ torchaudio/prototype/models/_conformer_wav2vec2.py,sha256=9Je5xp87iTzD86xUQ3h4cs0XXQYp-NLAC-tHgdiljjo,30316
24
+ torchaudio/prototype/models/__init__.py,sha256=Yuebowh-ukX2wxlU-rGc00BVjgChr_8Wf43wpTXTLus,1290
25
+ torchaudio/prototype/functional/functional.py,sha256=1alp81YX8x9DHBrIHz5RgxYrW-DEvPI59Io9p19kb64,6654
26
+ torchaudio/prototype/functional/_rir.py,sha256=56To55TZ9J8zTXmGEb3N14df6ADpuXAWfdfxRCe8OEA,17634
27
+ torchaudio/prototype/functional/_dsp.py,sha256=8mjlYBWIcqDidflvvZYtUI1Icx5hEBkyQE4XErDcHKw,17071
28
+ torchaudio/prototype/functional/__init__.py,sha256=C5uPqrnwc_VJ9ajJpudsBAmxt6-RKrHirIJa3RHLlfs,588
29
+ torchaudio/prototype/datasets/musan.py,sha256=eNwoPahmHFqdllmFY10D5L6ko6ZjHQI9ZdvJJ8b6vDU,2163
30
+ torchaudio/prototype/datasets/__init__.py,sha256=l2k9V6ujGOiiPUXtJqMT0sao0zIUqKOg-243PAVs7NM,51
31
+ torchaudio/prototype/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ torchaudio/pipelines/_wav2vec2/utils.py,sha256=CVawfXmVGWY8mj-_6r4KO907BpF67WAVWHEHhycFIaM,7317
33
+ torchaudio/pipelines/_wav2vec2/impl.py,sha256=I6htNo4Wt5LPxX9Z8rmxarFE8BZOZBUFIU9T9k1k2Po,67260
34
+ torchaudio/pipelines/_wav2vec2/aligner.py,sha256=HOcthFgup97QMx9ZXCmkv6jdw_zxdRT-e_SilXEujNU,2796
35
+ torchaudio/pipelines/_wav2vec2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ torchaudio/pipelines/_tts/utils.py,sha256=ZqqD-TXI6zkKvYtdAHlZikKlpEO00otvOKJTTjXFOGI,4844
37
+ torchaudio/pipelines/_tts/interface.py,sha256=y1mU0446Vy2hHpCwMqRZt1UI4ZXl-C4tJp92EylwHh0,10479
38
+ torchaudio/pipelines/_tts/impl.py,sha256=wwrTyTEEkew22AnzB_ZklapGaAstJSUBawhA7bOcGXM,15759
39
+ torchaudio/pipelines/_tts/__init__.py,sha256=WKc5c06b_M9MvEohJZghJJWAL7vXvfwRIkdy85UCh04,442
40
+ torchaudio/pipelines/rnnt_pipeline.py,sha256=S0DLMPbt-lqNBWOcjG5KP2IfU1X_oTv95CVmSjxYJ2g,14129
41
+ torchaudio/pipelines/_squim_pipeline.py,sha256=Pumv9jYoJ5mjOeauyuK7RmE8j3iVFP4VuMmvz6UqM3I,6436
42
+ torchaudio/pipelines/_source_separation_pipeline.py,sha256=WAjiWSlk73VS985GpKweDAfk2aKwQWI6jnGNwYHiRi8,4333
43
+ torchaudio/pipelines/__init__.py,sha256=oMwOu-1T_ugJmhdaoI5NrCDrUAGrpDOlJQO8h-bLAW4,2847
44
+ torchaudio/models/wav2vec2/utils/import_huggingface.py,sha256=NMK6YrAIDfOw8j1tV-3XTwx_mwbJHvg8ldTrAWRztIM,6080
45
+ torchaudio/models/wav2vec2/utils/import_fairseq.py,sha256=so7T-otDNCsTUtzJRUFFGWyd0caWl3RY_UbFMxJ4DJE,9411
46
+ torchaudio/models/wav2vec2/utils/__init__.py,sha256=1eowaOEKRbp7JajFNv_r47REJqnMmXidukS7Mrwp_5Q,188
47
+ torchaudio/models/wav2vec2/wavlm_attention.py,sha256=iYde9grsb_RaEs87FI5ykyN3z0Ix1plqpsMNvakAiWM,11058
48
+ torchaudio/models/wav2vec2/model.py,sha256=kP6QKsF1PjleyUMhaPjydi0pCRy4GGUArRWBzfDJmdE,61671
49
+ torchaudio/models/wav2vec2/components.py,sha256=EzmuGc5qHVPrHCGqYVHTvdjqP2gCrBfnHSoTK9GsZ1w,48244
50
+ torchaudio/models/wav2vec2/__init__.py,sha256=j5FdQFfuIpdIKYwoMLop4Ba70GGoS-lK61tU-oNG5wg,972
51
+ torchaudio/models/squim/subjective.py,sha256=1_gK9O3nvrjiikpP46IdsMzKduSTt91kKklA69wQqiw,5947
52
+ torchaudio/models/squim/objective.py,sha256=0Dsio0cQ_NBHg7t0YFbBamyiWPpocfaErddnBttu8b0,12615
53
+ torchaudio/models/squim/__init__.py,sha256=eQox8kPviOthKulpzZvPK0a66NHW7MzYE4aOF7va_kU,357
54
+ torchaudio/models/decoder/_cuda_ctc_decoder.py,sha256=BZCjAdZ50umWW171nJYHy24YZ5CxM8a2JfMIeO4S3BM,7373
55
+ torchaudio/models/decoder/_ctc_decoder.py,sha256=woyUaDCuaMQqPTQ7uLuc99lxMAOsJj5AxWwS9hf6JNY,20650
56
+ torchaudio/models/decoder/__init__.py,sha256=WMh4udN8CGF-SvgN6JBXSNMjhZqm1et7FyMrsk6V6RM,1252
57
+ torchaudio/models/wavernn.py,sha256=LRgL36jA6WzI1PAzBY6P52oCMGSTOraXB8fEgkwpSxw,15855
58
+ torchaudio/models/wav2letter.py,sha256=oetxpH5RG0TadYB75IOmYOrnraaPvSlcSNpRZb2FE_A,3350
59
+ torchaudio/models/tacotron2.py,sha256=mZ5lLSa75oqc0hgkc3sIm5_gK-knhtgX3dmg9-oLQao,46960
60
+ torchaudio/models/rnnt_decoder.py,sha256=CBBMZhhq5Bgax0_3p3SZD-Os3S1LFHB91oTgVED4bmY,13178
61
+ torchaudio/models/rnnt.py,sha256=PNJpZd3vH6wRq8TEf4UlPtVHbte9wOJ-bRMEug6gp08,36357
62
+ torchaudio/models/emformer.py,sha256=WbaeZcrPFOOLn4igqweE0AfuF_SQZpqg7XPGEhl7C8c,38650
63
+ torchaudio/models/deepspeech.py,sha256=nVYc2xwWpFO6gu5CR0mbqLiAzJn8lAfHcdcP92i22mo,2830
64
+ torchaudio/models/conv_tasnet.py,sha256=D7Y10sOzLe03gygfN1J5R73SIHkIGVQOkqKQ6Ni3o_s,12870
65
+ torchaudio/models/conformer.py,sha256=gVrOYeJkPlVaX-4eZpVzNUe_r3k7g1Y6NaaQ8JZP-r4,10361
66
+ torchaudio/models/_hdemucs.py,sha256=ipAj7965PO_WEZqQwW1om9gQj90UhQOeU6HU3Lpvzwo,39250
67
+ torchaudio/models/__init__.py,sha256=Gi3UQvxjwTLW9wfKlF42O3Vup70d0bk2x-rZS89ASwI,2080
68
+ torchaudio/lib/libtorchaudio.pyd,sha256=Z2WCr0bhZZ4HxBW9m1BLvjiEo0v7f7Avj9LwpPd2T6c,1548800
69
+ torchaudio/lib/_torchaudio.pyd,sha256=8nxz06hKuDB_BJ5iihORdgfhAL-HEZ52O7YGByUD6V4,759296
70
+ torchaudio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ torchaudio/io/_playback.py,sha256=UpPb-m35XUlYL2lybQGXAJAvfmUPT_Kqx4jpYArIAz0,2393
72
+ torchaudio/io/_effector.py,sha256=5Kh7br-ZuLzmoRSVXk5JNQ8NkwcGUiY_mrt7d_1W1eg,12217
73
+ torchaudio/io/__init__.py,sha256=5U3MlGVGw5vPTZqCZ-7N25oVfwssA6KUtluj-9rNRMM,310
74
+ torchaudio/functional/functional.py,sha256=qjdU3kILy69-jQL3lQ2EO1y_dpLDif_jAp99hBRJnPo,98541
75
+ torchaudio/functional/filtering.py,sha256=zQnWC-sLVZs8SY1qRnBy0A4fO-9EBtYVxX1NoZpE5qo,63224
76
+ torchaudio/functional/_alignment.py,sha256=46GhuEYUqI1gE-2UKSu9BIQF1QpZ5yunUS8JZGZJuss,4823
77
+ torchaudio/functional/__init__.py,sha256=NwlPoWjNravX4itCZy-dzN-BkCFdDHFRwvPle8JjBRo,2484
78
+ torchaudio/datasets/yesno.py,sha256=B3hRNUazvB8V8SwOUlQzliB9vI9gMkl9SEl-dZ4PEaw,3115
79
+ torchaudio/datasets/voxceleb1.py,sha256=JlYkbyYOAFUFhGLULe3lgucANWf_G7qGqw47YjiX2IM,12034
80
+ torchaudio/datasets/vctk.py,sha256=vN_VzxTLyHW11I_rzfzMVA3h5JW917FaU3NCnR-zcL0,5842
81
+ torchaudio/datasets/utils.py,sha256=m-sBYgQb0JxgGVfsVpekKFDI_7PGXCTma6N2ymfJl0g,1743
82
+ torchaudio/datasets/tedlium.py,sha256=UQZUaeUqmFntZWcH9HXOpGeW6tsCcG81bPjX2_CWxbg,8916
83
+ torchaudio/datasets/speechcommands.py,sha256=_wmrKSiEe0COO7uk0JVXypBmNxu0urnceHuFQ6zMOk0,7664
84
+ torchaudio/datasets/snips.py,sha256=mwVc5KsbMlPQJ87eyYgjnQ5S4EFXoQvm13dO0rXpJuE,5165
85
+ torchaudio/datasets/quesst14.py,sha256=3y6H3T3g78jkDqca8jORQBOViZhH1RhlsfuY8HJ2OcU,4591
86
+ torchaudio/datasets/musdb_hq.py,sha256=FVlKsGEBHiT50y9GLswnt2QFph2PjiI6yCy1MxiG6f8,5214
87
+ torchaudio/datasets/ljspeech.py,sha256=l09BSBQH76I-LhYkIRF0u18tTi-4yysaF4gj2GSZaxw,3601
88
+ torchaudio/datasets/libritts.py,sha256=91Ep2Mq3OySre25GniXBLmRzTwEPiKmMaqXnzirn0xY,6038
89
+ torchaudio/datasets/librispeech_biasing.py,sha256=KEGplRU_wpgb0VqrT-t42kvtC7lg4uMssZcosVvvPhg,7147
90
+ torchaudio/datasets/librispeech.py,sha256=ys769I0UzG07UEmyZ_KDwATh4yc08hFUuCayK8tYIGg,6482
91
+ torchaudio/datasets/librimix.py,sha256=AncE671AOl04dRPsajNZW-ZxxI_PwA2sjBftdBg4Q-k,5249
92
+ torchaudio/datasets/librilight_limited.py,sha256=iwZBlSKVLrXzhZvaqjuVRGO6czxX4fpdzd8wWe5feWQ,4290
93
+ torchaudio/datasets/iemocap.py,sha256=ZMMG_FpcWcMHEbhuRYRQaUWi_DoegjxCrnVyCg5EEVE,5077
94
+ torchaudio/datasets/gtzan.py,sha256=kt25Ly9qDGuiiVXgsXhS05tGi6laRhRko81-BQ4sZ-w,25475
95
+ torchaudio/datasets/fluentcommands.py,sha256=KnmH1Y28k5PhqQX6eV-75MqwTRxiHSUUcvAsa-K954s,3353
96
+ torchaudio/datasets/dr_vctk.py,sha256=Ayf85prDNr1LcWQ4bysVWdRVPry2JALjv6Mtq-6iBpY,4498
97
+ torchaudio/datasets/commonvoice.py,sha256=OcFn-nG4YfBIz0YIpH91xH9rFka8yFJmrxy4vFZkC4I,2849
98
+ torchaudio/datasets/cmudict.py,sha256=_9vTz7_8BFVrcHeA61_-h2XLOl6IsdWCptkMWziOW7U,6176
99
+ torchaudio/datasets/cmuarctic.py,sha256=xEHBtO8oh5ub8VbLa1qcL-meFhYeg4EQpMUdiGaelGA,7254
100
+ torchaudio/datasets/__init__.py,sha256=hdHldm3OzoQLbI0kHj8tLxqwDhzMfedq0_t1kAK7ORg,1218
101
+ torchaudio/compliance/kaldi.py,sha256=bS7qJgS3k8FK1RkMiNEoP3q0xhjeV_V4RHQ9jo_rqOM,37479
102
+ torchaudio/compliance/__init__.py,sha256=JNH_-dTQVmm55YwcVMuVvUYFWdXhGn4C__9S8IUsNoU,53
103
+ torchaudio/backend/sox_io_backend.py,sha256=_DD1_6y4eV4MsIl2Clcxnq96k_EXT0XMu5p2Z61gnEs,491
104
+ torchaudio/backend/soundfile_backend.py,sha256=NFHAQcz8kwlgI7qIG1bYrbgzsjtDCkNn_Gmip6vBL6g,513
105
+ torchaudio/backend/no_backend.py,sha256=xc-k0kqzYOEM6dvcIwiMDEaLutKrYXXCsCXF1IVFNHM,483
106
+ torchaudio/backend/common.py,sha256=mn0l6GBwet7DvRQPURhYIHF-HrQFvEFVKM23PawfbH8,456
107
+ torchaudio/backend/_sox_io_backend.py,sha256=Ut3-QaqzaJ0MvNc7NdpMTST7_mZy1xSixGbDC7418Qk,11750
108
+ torchaudio/backend/_no_backend.py,sha256=CEpYJ0bZi937Z0q2JHdRVnDKd7HWlCUVR7rEVHE_xmE,782
109
+ torchaudio/backend/__init__.py,sha256=ckKT_tmcmc_Z43ZTlqJ39fwUbmv-j-mAP2BWp0sU4Tg,289
110
+ torchaudio/_internal/module_utils.py,sha256=d0Gf_DhaA-fEtxKHjWhDwYrBsH6CCk41eUi_9THhQ9k,3675
111
+ torchaudio/_internal/__init__.py,sha256=80cpJfTS8977YYrU3q5p4DRAGAkqEJrmG9Lq2hEDpoo,251
112
+ torchaudio/_extension/utils.py,sha256=wFDF8B6Q22UL3zyX8swZ-JjlDgm9-VdjeraslQr2yIY,6438
113
+ torchaudio/_extension/__init__.py,sha256=s6AzXocDcuh0mtYVUCOOjZ_mCmSCno8jbZN750YI-Ps,2276
114
+ torchaudio/_backend/utils.py,sha256=8HkmV_GCHZhD-XaKNQ60nGFsu7rVgr1SOhasN6v91aI,13616
115
+ torchaudio/_backend/sox.py,sha256=UGF352HA_5kXebHEdxOlvyNgruYacxDkeJy4ErggRhI,3451
116
+ torchaudio/_backend/soundfile_backend.py,sha256=sVSEM2On6PMY7AbPqpfvE1u1Bg2_0aiSrZ4TclAFi_w,17833
117
+ torchaudio/_backend/soundfile.py,sha256=Dd-K6Tg_G3ze08hImvnAsO5lpAERpmUd9oxkNsGJUno,1757
118
+ torchaudio/_backend/ffmpeg.py,sha256=b6dr67sWg47uFJxIyWLXCtrdPMlgjYdWmj7n919Ph1M,11628
119
+ torchaudio/_backend/common.py,sha256=h9R29RTTW2lqOiKYByETXfXWsrTH65uHxGDKw3bWj-s,1835
120
+ torchaudio/_backend/backend.py,sha256=CakqB9z_4ZtLsQTyMZbEbB0kTqpUe_gidHgObv9acyQ,1618
121
+ torchaudio/_backend/__init__.py,sha256=2bMTZ3tG2_5nvnqAAmvEnGBInO5a9DdUPNoyXEnX1M0,1692
122
+ torchaudio/version.py,sha256=aDI5Usjjh16XY62ABy8FljzI4NItLTbNAv5ZRhK0zbw,85
123
+ torchaudio/kaldi_io.py,sha256=acwysr6fASV9IcOTF0AbVPCo_VQTu1M2AOn1SXm3GPE,5217
124
+ torchaudio/__init__.py,sha256=kUWnkwcKERMj7m-B4E826aGZWGa5sJs1DEpLP6LZoEs,945
125
+ torchaudio-2.6.0.dist-info/LICENSE,sha256=MmOOF5kxv-VR6r9nsOZ6E7SD4Wa1jdcmNjSrf4nzlvU,1363
126
+ torchaudio-2.6.0.dist-info/METADATA,sha256=D2NRpuk-Y5oxtxApwqgVwJd3tV0zK8X_UXoDF4Nxvhw,6742
127
+ torchaudio-2.6.0.dist-info/WHEEL,sha256=6bXTkCllrWLYPW3gCPkeRA91N4604g9hqNhQqZWsUzQ,101
128
+ torchaudio-2.6.0.dist-info/top_level.txt,sha256=GT0MktEbHKoLnvd-6ii7_dhJVvshupOujk840BcHU4U,17
129
+ torchaudio-2.6.0.dist-info/RECORD,,
130
+ torio/utils/ffmpeg_utils.py,sha256=2-7XS7CEZB0-M9-Ls5Tki4v7aXGJiVg7WouAUZjt3XI,8273
131
+ torio/utils/__init__.py,sha256=uQV58SlyikUr6yF4HITASCvuX-_fnzbeDxFRzFucQE4,60
132
+ torio/lib/libtorio_ffmpeg6.pyd,sha256=l4z5pgFB4JzwQA3jUZyQjzStIRaNN56dyDYmlrWd4ec,965632
133
+ torio/lib/libtorio_ffmpeg5.pyd,sha256=VLvtS96xNAHhZDXIJXqU9_ICFCKEG4ltuGV5fdFiTDg,965632
134
+ torio/lib/libtorio_ffmpeg4.pyd,sha256=mLtOPa_SyRiUGL3rtFBMEoWdHVMw5a04gb_7Hh8IiBA,965632
135
+ torio/lib/_torio_ffmpeg6.pyd,sha256=YO1zmPLh0YLOq2Z06hizgSJG6ti5T1sXzWTfgvSLwLQ,1770496
136
+ torio/lib/_torio_ffmpeg5.pyd,sha256=6hudav0V2-NbXls4WMSeoFp6_POWb8gzktkm3RLXzho,1770496
137
+ torio/lib/_torio_ffmpeg4.pyd,sha256=aj6u5rj8a_l0M5haum8aSOb0EQPk7tz5EE4HxgCYFgo,1770496
138
+ torio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ torio/io/_streaming_media_encoder.py,sha256=C4zIasotf7GlkQqtRK3vMCt2aN6FkG6NK2KUw0ZdHHo,20224
140
+ torio/io/_streaming_media_decoder.py,sha256=dx0K8PD2PZY7yRY1G_As-_8-LyQDLdYfRZPW1kmrJg0,35354
141
+ torio/io/__init__.py,sha256=GSt-4DRzgiuVmNN3WwjDAMACztJidmEP5ghVOlW6OQI,235
142
+ torio/_extension/utils.py,sha256=ppIGBFk868z7QbfSjawHUkSO3yZ7ML2jHFgE-j6GymI,5051
143
+ torio/_extension/__init__.py,sha256=9GnFiLWPCViTbUUNio9At1M0ALGqKtZ9lFOuPUn1Sc8,326
144
+ torio/__init__.py,sha256=6Rz28GL44aSOszXJewvjdcm8Fp47TgphNMPtsIBd2aE,119
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1,2 @@
1
+ torchaudio
2
+ torio
torio/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ from . import _extension # noqa # usort: skip
2
+ from . import io, utils
3
+
4
+
5
+ __all__ = [
6
+ "io",
7
+ "utils",
8
+ ]
@@ -0,0 +1,13 @@
1
+ from .utils import _init_ffmpeg, _LazyImporter
2
+
3
+
4
+ _FFMPEG_EXT = None
5
+
6
+
7
+ def lazy_import_ffmpeg_ext():
8
+ """Load FFmpeg integration based on availability in lazy manner"""
9
+
10
+ global _FFMPEG_EXT
11
+ if _FFMPEG_EXT is None:
12
+ _FFMPEG_EXT = _LazyImporter("_torio_ffmpeg", _init_ffmpeg)
13
+ return _FFMPEG_EXT