Skip to content
Snippets Groups Projects
Commit 4c7bf9aa authored by David Trattnig's avatar David Trattnig
Browse files

Correct assignment of live channels. #3

parent 0045a9eb
No related branches found
No related tags found
No related merge requests found
...@@ -212,7 +212,8 @@ class SoundSystem(): ...@@ -212,7 +212,8 @@ class SoundSystem():
# LIVE # LIVE
if entry.get_type() == ChannelType.LIVE: if entry.get_type() == ChannelType.LIVE:
entry.channel = "linein_" + entry.source.split("line://")[1] channel_num = entry.source.split("line://")[1]
entry.channel = Channel["LIVE_"+channel_num]
is_ready = True is_ready = True
else: else:
# Choose and save the input channel # Choose and save the input channel
...@@ -303,17 +304,18 @@ class SoundSystem(): ...@@ -303,17 +304,18 @@ class SoundSystem():
self.active_channel[entry.get_type()] = entry.channel self.active_channel[entry.get_type()] = entry.channel
# Dear filesystem channels, please leave the room as you would like to find it! # Dear filesystem channels, please leave the room as you would like to find it!
if entry.previous_channel and entry.previous_channel in ChannelType.FILESYSTEM.channels: if hasattr(entry, "previous_channel"):
def clean_up(): if entry.previous_channel in ChannelType.FILESYSTEM.channels:
# Wait a little, if there is some long fade-out. Note, this also means, def clean_up():
# this channel should not be used for at least some seconds (including clearing time). # Wait a little, if there is some long fade-out. Note, this also means,
time.sleep(2) # this channel should not be used for at least some seconds (including clearing time).
self.enable_transaction() time.sleep(2)
self.channel_activate(entry.previous_channel.value, False) self.enable_transaction()
res = self.playlist_clear(entry.previous_channel) self.channel_activate(entry.previous_channel.value, False)
self.logger.info("Clear Queue Response: " + res) res = self.playlist_clear(entry.previous_channel)
self.disable_transaction() self.logger.info("Clear Queue Response: " + res)
Thread(target=clean_up).start() self.disable_transaction()
Thread(target=clean_up).start()
# Filesystem meta-changes trigger the event via Liquidsoap # Filesystem meta-changes trigger the event via Liquidsoap
if not entry.channel in ChannelType.FILESYSTEM.channels: if not entry.channel in ChannelType.FILESYSTEM.channels:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment