From d6818287a7e670b9bdee1f564d82a152bae3d6c7 Mon Sep 17 00:00:00 2001 From: Gareth Palmer Date: Sat, 11 Sep 2021 02:28:12 +1200 Subject: [PATCH] Fix missing separator for client list in mediastream. --- mediastream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediastream b/mediastream index 043ebb3..481eca6 100755 --- a/mediastream +++ b/mediastream @@ -177,7 +177,7 @@ def stream_media(target_hostnames, multicast_address, port, codec, wav_file): if multicast_address is not None: udp_sink.set_property('clients', f'{multicast_address}:{port}') else: - udp_sink.set_property('clients', ''.join([f'{target_hostname}:{port}' for target_hostname in target_hostnames])) + udp_sink.set_property('clients', ','.join([f'{target_hostname}:{port}' for target_hostname in target_hostnames])) udp_sink.set_property('sync', True)