Skip to content

Commit

Permalink
update banner
Browse files Browse the repository at this point in the history
  • Loading branch information
k3it committed Nov 17, 2017
1 parent 993c74e commit bc9129b
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions Qsorder/qsorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ def main(argslist=None):



print("--------------------------------------")
print("v2.11 QSO Recorder for N1MM, 2017 K3IT\n")
print("--------------------------------------")
print("-------------------------------------------------------")
print("|\tv2.11 QSO Recorder for N1MM, 2017 K3IT\t")
print("-------------------------------------------------------")

# global p
p = pyaudio.PyAudio()
Expand Down Expand Up @@ -390,7 +390,7 @@ def main(argslist=None):
else:
try:
def_index = p.get_default_input_device_info()
print("Input Device :", def_index['index'], def_index['name'])
print("| Input Device :", def_index['index'], def_index['name'])
DEVINDEX = def_index['index']
except IOError as e:
print(("No Input devices: %s" % e[0]))
Expand All @@ -407,7 +407,7 @@ def main(argslist=None):



print("Listening on UDP port", MYPORT)
print("| Listening on UDP port", MYPORT)


# define callback
Expand All @@ -431,19 +431,21 @@ def callback(in_data, frame_count, time_info, status):

sampwidth = p.get_sample_size(FORMAT)

print("* recording", CHANNELS, "ch,", dqlength * CHUNK / RATE, "secs audio buffer, Delay:", DELAY, "secs")
print("Output directory", os.getcwd() + "\\<contest...>")
print("|", CHANNELS, "ch x ", dqlength * CHUNK / RATE, "secs audio buffer\n| Delay:", DELAY, "secs")
print("| Output directory", os.getcwd() + "\\<contest...>")
if nopyhk:
print("Hotkey functionality is disabled")
print("| Hotkey functionality is disabled")
else:
print("Hotkey: CTRL+ALT+" + HOTKEY)
print("| Hotkey: CTRL+ALT+" + HOTKEY)
if (options.station_nr and options.station_nr >= 0):
print("Recording only station", options.station_nr, "QSOs")
print("| Recording only station", options.station_nr, "QSOs")
if (options.continuous):
print("Full contest recording enabled.")
print("\t--------------------------------\n")


print("| Full contest recording enabled.")
print("-------------------------------------------------------\n")
print(" QSO recordings can be shared with the World at:")
print("\thttp://qsorder.hamradiomap.com\n")


#start continious mp3 writer thread
if (options.continuous):
mp3 = threading.Thread(target=writer)
Expand Down

0 comments on commit bc9129b

Please sign in to comment.