Skip to content

Commit

Permalink
Merge pull request #84 from CameronRP/fix-audio-test
Browse files Browse the repository at this point in the history
fixed audio test
  • Loading branch information
CameronRP authored Nov 4, 2019
2 parents 5e5959a + 87c8157 commit 11847a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speaker.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func playTestAudio() ([]byte, error) {
if wav == nil {
return nil, errors.New("unable to load test audio")
}
cmd := exec.Command("play", "-t", "wav", "--norm", "-q", "-")
cmd := exec.Command("play", "-t", "wav", "--norm=-3", "-q", "-")
stdin, err := cmd.StdinPipe()
if err != nil {
return nil, fmt.Errorf("unable to play audio: %v", err)
Expand Down

0 comments on commit 11847a2

Please sign in to comment.