We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c32db43 commit 23c9299Copy full SHA for 23c9299
1 file changed
vao-recorder.py
@@ -478,7 +478,7 @@ def test_microphones(
478
# Play audio
479
for _file in output_folder.glob('audio*.wav'):
480
typer.echo(f'Playing {_file}')
481
- with open(_file.with_suffix('.yaml')) as f:
+ with open(_file.with_suffix('.yaml'), encoding='utf-8') as f:
482
typer.echo(f.read())
483
data, fs = wave_read(_file)
484
sd.play(data, samplerate=fs, blocking=True)
0 commit comments