You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "hello, this is a test" | ./piper.exe --model en_US-amy-medium.onnx --output_file hello.wav
Outputting raw and then playing it with ffmpeg, sounds great!
echo "hello, this is a test" | ./piper.exe --model en_US-amy-medium.onnx --output_raw -o - | ffplay -nodisp -autoexit -f s16le -ar 22050 -ac 1 -
but if you use the stdoutput for wav file it is recognizable but extremely static-y. The riff headers are fine the audio is just busted.
echo "hello, this is a test" | ./piper.exe --model en_US-amy-medium.onnx --output_file - > hello.wav
trying this with ffplay yield the same aweful result
echo "hello, this is a test"| ./piper --model ./en_US-amy-medium.onnx --output_file - | ffplay -nodisp -autoexit -
I thought maybe this was an issue with the shell doing something weird, but piping raw into a file and playing it with ffplay sounds great but piping the file output into a file sounds bad.
I wanted to attach a sample but github doesn't allow it.
The text was updated successfully, but these errors were encountered:
on windows with the latest release version:
Outputting a wav file directly sounds great!
Outputting raw and then playing it with ffmpeg, sounds great!
but if you use the stdoutput for wav file it is recognizable but extremely static-y. The riff headers are fine the audio is just busted.
trying this with ffplay yield the same aweful result
I thought maybe this was an issue with the shell doing something weird, but piping raw into a file and playing it with ffplay sounds great but piping the file output into a file sounds bad.
I wanted to attach a sample but github doesn't allow it.
The text was updated successfully, but these errors were encountered: