Python library to process audio
Project description
paud
Python library to process audio
open audio
from paud import Audio
au = Audio.open('audio.wav') #file or path
print(f'audio duration = {au.duration}')
au.play() #play audio
au[:100].play() #play first 100 frames of audio
open audio from URL
import requests
from paud import Audio
from io import BytesIO
r = requests.get('https://file-examples-com.github.io/uploads/2017/11/file_example_WAV_10MG.wav')
au = Audio.open(BytesIO(r.content))
au.play()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
paud-0.1.tar.gz
(16.3 kB
view details)
Built Distribution
paud-0.1-py3-none-any.whl
(17.5 kB
view details)
File details
Details for the file paud-0.1.tar.gz
.
File metadata
- Download URL: paud-0.1.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.7.4 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b9aa08fdc12b5d3349babd489717e0f66108cbf89d06c00432982dc67154500 |
|
MD5 | 1250a84bc130e0494f19f1dda291a139 |
|
BLAKE2b-256 | 4c361f29b22b87ee115eaa384eed9477e3afb13b2e55dcf474a6f5d84b2e577c |
File details
Details for the file paud-0.1-py3-none-any.whl
.
File metadata
- Download URL: paud-0.1-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.7.4 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa0172be64cb38f6bbd655c69b8c784608296fd8a571393cd6ef50c2eae763f |
|
MD5 | ada95f924d74516071236de3d9cf22d8 |
|
BLAKE2b-256 | 8fc7489fc21b24ac156506fcc90039f6b5f0cc399898808b4cfe116ce9f5138c |