This commit is contained in:
Doug Le Tough 2019-08-26 23:09:39 +11:00
parent 97db48dd7f
commit d1a8058515
1 changed files with 4 additions and 4 deletions

View File

@ -50,18 +50,18 @@ def push_ogg(ogg_file):
icecast.open() icecast.open()
with open(ogg_file, 'rb') as ogg: with open(ogg_file, 'rb') as ogg:
total = 0 total = 0
print("- Reading 4096 bytes") # print("- Reading 4096 bytes")
new_buff = ogg.read(4096) new_buff = ogg.read(4096)
while True: while True:
cur_buff = new_buff cur_buff = new_buff
print("- Reading next 4096 bytes") # print("- Reading next 4096 bytes")
new_buff = ogg.read(4096) new_buff = ogg.read(4096)
total += len(cur_buff) total += len(cur_buff)
if len(cur_buff) == 0: if len(cur_buff) == 0:
print(" - Buffer is empty: EOF") print(" - Buffer is empty: EOF")
print(" - Sent: {} bytes".format(total)) print(" - Sent: {} bytes".format(total))
break break
print("- Sending 4096 bytes") # print("- Sending 4096 bytes")
icecast.send(cur_buff) icecast.send(cur_buff)
icecast.sync() icecast.sync()
@ -84,7 +84,7 @@ def main():
oord = ord(letter) oord = ord(letter)
freq, duration = notes_table(oord) freq, duration = notes_table(oord)
if oord not in args.exclude: 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)) wave_file.writeframes(sine_wave(frequency=freq, duration=duration))
result = convert2ogg(wav_output, ogg_output) result = convert2ogg(wav_output, ogg_output)
if result == 0: if result == 0: