Metadata-Version: 2.1
Name: audio-purifier
Version: 0.0.1
Summary: Enables silent parts removal from audio, exporting as new files. Inspired by 'faster-whisper'.
Project-URL: Documentation, https://github.com/huynguyengl99/audio-purifier
Project-URL: Homepage, https://github.com/huynguyengl99/audio-purifier
Project-URL: Repository, https://github.com/huynguyengl99/audio-purifier
Author-email: Huy Nguyen <danghuy1999@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
Requires-Python: >=3.9
Requires-Dist: av==10.*
Requires-Dist: numpy<2,>=1.0.0
Requires-Dist: onnxruntime<2,>=1.14
Requires-Dist: scipy<2,>=1.11
Provides-Extra: extra
Requires-Dist: pydub<1,>=0.25.1; extra == 'extra'
Description-Content-Type: text/markdown

# Audio Purifier

**Audio Purifier** is a utility package that enables silent parts
removal from audio, exporting as new files. Inspired by
'faster-whisper'.

## Requirements

* Python 3.9 or greater


* You can open and save `WAV` files with pure python. For opening
and saving non-wav files – like mp3 – you'll need [ffmpeg](http://www.ffmpeg.org/)
or [libav](http://libav.org/) in order to install extra package
(PyDub).

## Installation

The module can be installed from [PyPI](https://pypi.org/project/audio-purifier/):

```bash
pip install audio-purifier
```

<details>
<summary>Other installation methods (click to expand)</summary>

### Install the latest dev version from github (or replace `@master` with a [@release_version]

```bash
pip install git+https://github.com/huynguyengl99/audio-purifier@master
```

</details>

## Document

To be defined
