Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.13 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.13 KB

dotsound

tag in-use screenshot

Simple application that serves as a web mp3 player. The application is build with Flask and enabled client side with javascript (jquery).

The project was initialy a python script that read ID3 tags using Mutagen.

##Instalaltion make music directory inside '/static' the name of the folder has to be 'music'

mkdir dotsound/static/music

Install dependeties:

python setup.py install

Note: It is always recommended to use virtualenv for a development setup. For more information: Flask with virtualenv

##Usage Running the script is all that is required. app will default to localhost:5000.

python run.py

Run globally

For global access pass host and port argument in setup.py. Read more here

    from dotsound import app
        if __name__ == '__main__':
        app.run('0.0.0.0', port=80)

then run with root priviledge or as superuser