Medusa is a cross-platform music player based on python3.
Please make sure all the following requirements are satisfied or else the program might crash
* python3
* vlc runtime
* tkinter
* tinytag
* PIL
* config
Run the either of the following commands depending on you system configuration. This will install all the dependencies.
sudo pip install -r requirements.txt
To change the location of the music directory, edit the 18th line in medusa.py
such as
config.path = "/music/directory/"
To create an executable from the source-code, type the following command
sudo pip install pyinstaller
pyinstaller --add-data 'assets/*:assets' --add-data '/usr/lib/x86_64-linux-gnu/vlc/plugins/*:plugins' --onefile medusa.py --hidden-import='PIL._tkinter_finder'
Incase of any issues with the application, feel free to file an issue. I'll look into it ASAP.