Skip to content

Commit 32b95f8

Browse files
authored
Merge pull request #118 from d-loose/fix-ffplay-args
fix ffplay arguments
2 parents 1c11209 + e4cc1b0 commit 32b95f8

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)