Metadata-Version: 2.1
Name: AudioFusion
Version: 0.0.2
Summary: Enhance your music experience – effortlessly add immersive 8D, slowed, and reverb effects to any song.
Home-page: https://github.com/mineiszarox/AudioFusion
Author: Zarox
Author-email: mineiszarox@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mineiszarox/AudioFusion
Keywords: music,reverb,slowed,8d,editor,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: License
Requires-Dist: pydub
Requires-Dist: SoundFile
Requires-Dist: pedalboard

<div align="center">
<h1>AudioFusion</h1>
Python music editor
</div>

<i>A package that allows to edit your music file however you want with effects like slowed reverb and 8d.</i>

<h2>Installation:</h2>

```bash
>>> python3 -m pip install AudioFusion
```

<h2>Usage:</h2>

```python
>>> from AudioFusion import Fusion


>>> # Load your music file
>>> music = Fusion.loadSound("/path/to/your/music.mp3")

>>> # Add effects
>>> music = Fusion.effect8D(music)
>>> music = Fusion.effectSlowed(music)

>>> # Reverb effect is a special case. Its highly suggest to add reverb in very end and mention it while saving music file otherwise you will face errors...
>>> music = Fusion.effectReverb(music)

>>> # Save your edited music file
>>> Fusion.saveSound(music, "finalMusic.mp3", ifReverb=True)


```
<p>More effects and method will be added soon</p>
<p>PR in github repository are always welcome.</p>
