Cleaning up.

This commit is contained in:
jpunkt 2021-11-05 07:30:30 +01:00
parent dd23dbcd1f
commit f805379385
2 changed files with 2 additions and 6 deletions

View file

@ -212,10 +212,6 @@ def record_sound(hal: PizzaHAL, filename: Any, duration: int,
sd.stop()
else:
sd.wait() # Wait until recording is finished
# TODO test
# myrecording = np.int16(myrecording)
# song = pydub.AudioSegment(myrecording.tobytes(), frame_rate=AUDIO_REC_SR, sample_width=2, channels=2)
# song.export(str(filename), format="mp3", bitrate="44.1k")
writewav(str(filename), AUDIO_REC_SR, myrecording)
if cache:
hal.soundcache[str(filename)] = (myrecording, AUDIO_REC_SR)

View file

@ -193,8 +193,8 @@ class Statemachine:
Activity.TAKE_PHOTO: take_photo,
Activity.LIGHT_LAYER: light_layer,
Activity.LIGHT_BACK: backlight,
Activity.ADVANCE_UP: move_vert,
Activity.ADVANCE_LEFT: move_hor
# Activity.ADVANCE_UP: move_vert,
# Activity.ADVANCE_LEFT: move_hor
}[act.activity](self.hal, **act.values)
except KeyError:
logger.exception('Caught KeyError, ignoring...')