Remove bodged load commands.
This commit is contained in:
parent
cac357c403
commit
91339174b6
1 changed files with 0 additions and 2 deletions
|
@ -120,7 +120,6 @@ def seek(channel, pos):
|
||||||
@app.route("/player/<int:channel>/output/<name>")
|
@app.route("/player/<int:channel>/output/<name>")
|
||||||
def output(channel, name):
|
def output(channel, name):
|
||||||
channel_to_q[channel].put("OUTPUT:" + name)
|
channel_to_q[channel].put("OUTPUT:" + name)
|
||||||
channel_to_q[channel].put("LOAD:test"+str(channel)+".mp3")
|
|
||||||
return ui_status()
|
return ui_status()
|
||||||
|
|
||||||
|
|
||||||
|
@ -151,7 +150,6 @@ def startServer():
|
||||||
for channel in range(3):
|
for channel in range(3):
|
||||||
channel_to_q.append(multiprocessing.Queue())
|
channel_to_q.append(multiprocessing.Queue())
|
||||||
channel_from_q.append(multiprocessing.Queue())
|
channel_from_q.append(multiprocessing.Queue())
|
||||||
# channel_to_q[-1].put_nowait("LOAD:test"+str(channel)+".mp3")
|
|
||||||
channel_p.append(
|
channel_p.append(
|
||||||
multiprocessing.Process(
|
multiprocessing.Process(
|
||||||
target=player.Player,
|
target=player.Player,
|
||||||
|
|
Loading…
Reference in a new issue