nava
nava copied to clipboard
🎵 Playing Sounds in Python
Overview
Nava is a Python library that allows users to play sound in Python without any dependencies or platform restrictions. It is a cross-platform solution that runs on any operating system, including Windows, macOS, and Linux. Its lightweight and easy-to-use design makes Nava an ideal choice for developers looking to add sound functionality to their Python programs.
PyPI Counter |
|
Github Stars |
|
Branch | main | dev |
Linux CI | ||
Windows CI | ||
macOS CI |
Code Quality |
Installation
PyPI
- Check Python Packaging User Guide
- Run
pip install nava==0.5
Source code
- Download Version 0.5 or Latest Source
- Run
pip install .
Conda
- Check Conda Managing Package
- Update Conda using
conda update conda
- Run
conda install -c openscilab nava
Usage
Basic
from nava import play
play("alarm.wav")
Async mode
⚠️ The async_mode
parameter has a default value of False
import time
from nava import play, stop
sound_id = play("alarm.wav", async_mode=True)
time.sleep(4)
stop(sound_id)
Loop mode
⚠️ The loop
parameter has a default value of False
⚠️ You should always set async_mode
flag when you are using loop
from nava import play, stop
sound_id = play("alarm.wav", async_mode=True, loop=True)
time.sleep(100)
stop(sound_id)
Error
from nava import play, NavaBaseError
try:
play("alarm.wav")
except NavaBaseError as e:
print(str(e))
Engine
List of different platforms and the corresponding engines that are used for sound playing.
Platform | Engine | Supported Formats |
---|---|---|
Linux | Advanced Linux Sound Architecture | .wav |
Windows | Winsound | .wav |
macOS | Audio File Play | .wav ,.mp3 |
Issues & bug reports
Just fill an issue and describe it. We'll check it ASAP! or send an email to [email protected].
- Please complete the issue template
You can also join our discord server
Show your support
Star this repo
Give a ⭐️ if this project helped you!
Donate to our project
If you do like our project and we hope that you do, can you please support us? Our project is not and is never going to be working for profit. We need the money just so we can continue doing what we do ;-) .