mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2024-12-28 18:36:07 +00:00
Merge branch 'master' of https://notabug.org/RemixDev/deemix-pyweb
This commit is contained in:
commit
22152d44b7
|
@ -12,7 +12,7 @@ NOTES:
|
|||
- You also might need [.NET 4.0](https://www.microsoft.com/en-us/download/details.aspx?id=17718) installed
|
||||
|
||||
After installing Python open a terminal/command prompt and install the dependencies using `python3 -m pip install -U -r requirements.txt --user`<br>
|
||||
If you're using git to get this repo you should use `git submodule update --init --recursive` as well. If you're just downloading the archive.zip, make sure you download and extract [deemix-webui](https://notabug.org/RemixDev/deemix-webui) into the webui folder.
|
||||
If you're using git to get this repo you should use `git submodule update --init --recursive` as well. If you're just downloading the archive.zip, make sure you download and extract [deemix-webui](https://notabug.org/RemixDev/deemix-webui) into the webui folder.<br>
|
||||
Run `python3 server.py` to start the server and then connect to `127.0.0.1:9666`. The GUI should show up.<br>
|
||||
If you don't want to use your browser you can start the GUI by using `python3 deemix_gui.py`<br>
|
||||
|
||||
|
|
|
@ -230,7 +230,10 @@ def getTracklist(data):
|
|||
@socketio.on('analyzeLink')
|
||||
def analyzeLink(link):
|
||||
(type, data) = app.analyzeLink(session['dz'], link)
|
||||
emit('analyze_'+type, data)
|
||||
if len(data):
|
||||
emit('analyze_'+type, data)
|
||||
else:
|
||||
emit('analyze_notSupported')
|
||||
|
||||
@socketio.on('getChartTracks')
|
||||
def getChartTracks(id):
|
||||
|
|
2
webui
2
webui
|
@ -1 +1 @@
|
|||
Subproject commit e59ff93b1d11a2c06f9b1cbb8bc88b3f479a5681
|
||||
Subproject commit da657bbdcc1bb61938f0392f77cd170d632847df
|
Loading…
Reference in a new issue