35 lines
576 B
Markdown
35 lines
576 B
Markdown
# MusicPom
|
|
|
|
PyQt5 music player inspired by MusicBee & iTunes
|
|
|
|
## Installation:
|
|
clone the repo
|
|
```
|
|
git clone https://github.com/billypom/musicpom
|
|
```
|
|
install system packages
|
|
```
|
|
sudo apt install ffmpeg
|
|
sudo apt install python3-pyqt5
|
|
```
|
|
create environment
|
|
```
|
|
cd musicpom
|
|
virtualenv venv
|
|
cd ..
|
|
cd musicpom
|
|
pip install -r requirements.txt
|
|
```
|
|
run the program
|
|
```
|
|
python3 main.py
|
|
```
|
|
|
|
## Todo:
|
|
|
|
- [x] Right-click menu
|
|
- [x] Editable lyrics textbox
|
|
- [ ] Delete songs from library (del key || right-click delete)
|
|
- [ ] .wav, .ogg, .flac convertor
|
|
- [ ] Alternatives to Gstreamer?
|