large file size #268
-
I created mp3 from about 10 average sentences like this: Is there anything that can decrease file size? |
Beta Was this translation helpful? Give feedback.
Answered by
synesthesiam
Nov 9, 2023
Replies: 1 comment
-
The output is always a WAV file, even if you name it cat sample.txt | piper -m en_GB-southern_english_female-low.onnx --output-raw | \
ffmpeg -f s16le -ar 16000 -ac 1 -i 'pipe:' -f mp3 -q:a 0 piper_output.mp3 Adjust |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
omega3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The output is always a WAV file, even if you name it
.mp3
. You can convert on the fly to MP3 usingffmpeg
like this:Adjust
-q:a 0
to change the quality level.