pico2wave.1 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .\" This file modified from the Debian version by B. Watson <yalhcru@gmail.com>
  2. .TH PICO2WAVE "1" "August 2021" "pico2wave" "SlackBuilds.org"
  3. .SH NAME
  4. pico2wave \- Small Footprint TTS
  5. .SH SYNOPSIS
  6. .B pico2wave
  7. \fB-w\fR
  8. \fI<filename.wav>\fR
  9. [ \fB-l\fR \fI<language>\fR ]
  10. [ \fI<words>\fR ]
  11. .SH DESCRIPTION
  12. .B pico2wave
  13. is a small footprint Text to Speech utility, using the SVOX Pico
  14. engine \fB[*]\fR. It converts
  15. text given on the command line (or standard input, if no
  16. \fI<words>\fR on command line) to audible speech, and writes
  17. to a RIFF .wav file.
  18. .PP
  19. .B Note:
  20. Only one \fI<words>\fR argument is spoken. Any further arguments are silently
  21. ignored. This means that you must quote your argument, if it has multiple
  22. words (e.g. a sentence).
  23. .PP
  24. The generated wav files are PCM, 16-bit mono, 16KHz sampling rate.
  25. .PP
  26. \fB[*]\fR The SVOX Pico engine is a software speech synthesizer for German, English
  27. (GB and US), Spanish, French and Italian. SVOX produces clear and
  28. distinct speech output, made possible by the use of Hidden Markov Model
  29. (HMM) algorithms.
  30. .SH OPTIONS
  31. .TP
  32. \fB\-w\fR, \fB\-\-wave\fR=\fIfilename\fR.wav
  33. Write output to this WAV file (extension SHOULD
  34. be .wav). This option is required: \fBpico2wave\fR
  35. cannot write to standard output (not even if you
  36. use \fB-w /dev/stdout\fR, sorry). If the file
  37. already exists, it will be \fBoverwritten\fR with no
  38. confirmation or warning.
  39. .TP
  40. \fB\-l\fR, \fB\-\-lang\fR=\fIlang\fR
  41. Language (default: \fBen\-US\fR). The languages supported are
  42. currently \fBde\-DE\fR, \fBen\-GB\fR, \fBen\-US\fR,
  43. \fBes\-ES\fR, \fBfr\-FR\fR, \fBit\-IT\fR.
  44. .SS "Help options:"
  45. .TP
  46. \-?, \fB\-\-help\fR
  47. Show help message
  48. .TP
  49. \fB\-\-usage\fR
  50. Display brief usage message
  51. .SH EXAMPLES
  52. .TP
  53. .B
  54. pico2wav -w test.wav 'Hello, world.'
  55. .PP
  56. Creates a file \fBtest.wav\fR containing the words "Hello, world."
  57. .TP
  58. .B
  59. echo 'Hello, world.' | pico2wav -w test.wav
  60. .PP
  61. Same as above, reading from standard input.
  62. .TP
  63. .B
  64. pico2wav -w test.wav < gettysburg_address.txt
  65. .PP
  66. Convert an entire text file to speech.
  67. .SH SEE ALSO
  68. .sp
  69. \fBpico2audio\fP(1)