Features

Requests

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# pip install cleanvoice-sdk
from cleanvoice import Cleanvoice

cv = Cleanvoice({'api_key': 'YOUR_CLEANVOICE_API_KEY'})

# process() handles uploading, processing, and polling automatically
result = cv.process(
    'https://cdn.cleanvoice.ai/assets/sample.mp3',
    {'normalize': True}
)

# Or process a local file:
# result = cv.process('/path/to/episode.mp3', {'normalize': True})

print(f'Cleaned audio: {result.audio.url}')
result.audio.download('cleaned.mp3')

Preview

Select audio above and run the requests
to see the result here...