An open API service indexing awesome lists of open source software.

https://github.com/arvind-4/audio-player-with-pyqt5

Audio Player with PyQt5
https://github.com/arvind-4/audio-player-with-pyqt5

audio-pla pip pyqt5 pyqt5-application pyqt5-desktop-application pyqt5-gui python-audio-player python3 virtualenv

Last synced: 8 months ago
JSON representation

Audio Player with PyQt5

Awesome Lists containing this project

README

          

# Audio Player in Python

This is a simple application which plays Audio.

## Code

### Install Virtualenv
```
pip install virtualenv
cd /path/to/folder
mkdir audio_player
cd audio_player
virtualenv .
```
### Activate the Virtualenv
```
source scripts/activate
```
### Install Dependencies & Run the Code
```
mkdir src && cd src
git clone https://github.com/Arvind-4/Audio-Player-with-PyQt5.git .
pip install -r requirements.txt
python main.py
```