Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
equalizer: minor exception handling
  • Loading branch information
pborky committed Dec 22, 2012
1 parent 2658d67 commit 17f589d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions host_python/equalizer.py
Expand Up @@ -66,7 +66,7 @@ def print_usage():
sys.exit(0)
elif k == '-a':
try: v = float(v)
except:
except ValueError:
print 'error: attenuation must be float value'
print_usage()
ATTENUATION = 10**(v/10)
Expand Down Expand Up @@ -148,6 +148,7 @@ def loop( stream ):
elif len(history) < HISTORY_SIZE: continue

# obtain input sequence ~~ oohhh what a kind of dimmish magic and windowing
#TODO: dynamic attenuation based on average power of input signal over timespan, threshold to cut off noise
x = np.concatenate(history*history_diminish)*window/ATTENUATION

# compute power spectral desity using autocarelate approach
Expand All @@ -159,7 +160,8 @@ def loop( stream ):
# integrate energy within bands ~~ oh, oohhh: look at the orthoginality trick
bands = (freqs>bands[...,:-1]) & (freqs<=bands[...,1:])
energy = np.round(( bands * psd ).sum(0).squeeze())

#energy = np.round(( bands * psd / bands.sum(0) ).sum(0).squeeze())

# write some debug colorfull, very usefull
ansicolors = ('\033[30;1m%5.0f\033[0m', '\033[33;1m%5.0f\033[0m', '\033[1;31m%5.0f\033[0m')
sys.stderr.write('\r[%s] '%','.join(
Expand All @@ -177,4 +179,8 @@ def loop( stream ):
# time.sleep(0.05)

if __name__ == '__main__':
with_stream(loop)
try:
with_stream(loop)
except KeyboardInterrupt:
pass

0 comments on commit 17f589d

Please sign in to comment.