From d1a8058515905eea9a143b772d9100b699002dcf Mon Sep 17 00:00:00 2001 From: Doug Le Tough Date: Mon, 26 Aug 2019 23:09:39 +1100 Subject: [PATCH] v1.0 --- logstreamer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/logstreamer.py b/logstreamer.py index 3b3c33d..10bbc82 100755 --- a/logstreamer.py +++ b/logstreamer.py @@ -50,18 +50,18 @@ def push_ogg(ogg_file): icecast.open() with open(ogg_file, 'rb') as ogg: total = 0 - print("- Reading 4096 bytes") + # print("- Reading 4096 bytes") new_buff = ogg.read(4096) while True: cur_buff = new_buff - print("- Reading next 4096 bytes") + # print("- Reading next 4096 bytes") new_buff = ogg.read(4096) total += len(cur_buff) if len(cur_buff) == 0: print(" - Buffer is empty: EOF") print(" - Sent: {} bytes".format(total)) break - print("- Sending 4096 bytes") + # print("- Sending 4096 bytes") icecast.send(cur_buff) icecast.sync() @@ -84,7 +84,7 @@ def main(): oord = ord(letter) freq, duration = notes_table(oord) if oord not in args.exclude: - print("Caractère: {} | Ord: {} | Fréquence: {} | Durée: {}".format(letter, oord, freq, duration)) + # print("Caractère: {} | Ord: {} | Fréquence: {} | Durée: {}".format(letter, oord, freq, duration)) wave_file.writeframes(sine_wave(frequency=freq, duration=duration)) result = convert2ogg(wav_output, ogg_output) if result == 0: