Skip to content

Commit e4cc1b0

Browse files
committed
fix ffplay arguments
1 parent 1c11209 commit e4cc1b0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/piper/audio_playback.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __enter__(self):
2222
"-autoexit",
2323
"-f",
2424
"s16le",
25-
"-ar",
25+
"-sample_rate",
2626
str(self.sample_rate),
27-
"-ac",
28-
"1",
27+
"-ch_layout",
28+
"mono",
2929
"-",
3030
],
3131
stdin=subprocess.PIPE,

0 commit comments

Comments
 (0)