espeak.1 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .\" Hey, EMACS: -*- nroff -*-
  2. .\" First parameter, NAME, should be all caps
  3. .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
  4. .\" other parameters are allowed: see man(7), man(1)
  5. .TH ESPEAK 1 "July 25, 2007"
  6. .\" Please adjust this date whenever revising the manpage.
  7. .\"
  8. .\" Some roff macros, for reference:
  9. .\" .nh disable hyphenation
  10. .\" .hy enable hyphenation
  11. .\" .ad l left justify
  12. .\" .ad b justify to both left and right margins
  13. .\" .nf disable filling
  14. .\" .fi enable filling
  15. .\" .br insert line break
  16. .\" .sp <n> insert n+1 empty lines
  17. .\" for manpage-specific macros, see man(7)
  18. .SH NAME
  19. espeak \- A multi-lingual software speech synthesizer.
  20. .SH SYNOPSIS
  21. .B espeak
  22. .RI [ options ]\ [ "<words>" ]
  23. .SH DESCRIPTION
  24. .B espeak
  25. is a software speech synthesizer for English, and some other languages.
  26. .SH OPTIONS
  27. .TP
  28. .B \-h
  29. Show summary of options.
  30. .TP
  31. .B \-f <text file>
  32. Text file to speak
  33. .TP
  34. .B \-\-stdin
  35. Read text input from stdin instead of a file
  36. .TP
  37. If neither -f nor --stdin, <words> are spoken, or if none then text is spoken from stdin, each line separately.
  38. .TP
  39. .B \-q
  40. Quiet, don't produce any speech (may be useful with -x)
  41. .TP
  42. .B \-a <integer>
  43. Amplitude, 0 to 20, default is 10
  44. .TP
  45. .B \-l <integer>
  46. Line length. If not zero (which is the default), consider
  47. lines less than this length as and-of-clause
  48. .TP
  49. .B \-p <integer>
  50. Pitch adjustment, 0 to 99, default is 50
  51. .TP
  52. .B -s <integer>
  53. Speed in words per minute, default is 160
  54. .TP
  55. .B \-v <voice name>
  56. Use voice file of this name from espeak-data/voices
  57. .TP
  58. .B -b
  59. Input text is 8-bit encoding
  60. .TP
  61. .B -m
  62. Indicates that the text contains SSML (Speech Synthesis Markup Language) tags or other XML tags. Those SSML tags which are supported are interpreted. Other tags, including HTML, are ignored, except that some HTML tags such as <hr> <h2> and <li> ensure a break in the speech.
  63. .TP
  64. .B \-w <wave file name>
  65. Write output to this WAV file, rather than speaking it directly
  66. .TP
  67. .B \-x
  68. Write phoneme mnemonics to stdout
  69. .TP
  70. .B \-X
  71. Write phonemes mnemonics and translation trace to stdout. If rules files have been built with --compile=debug, line numbers will also be displayed.
  72. .TP
  73. .B \-\-stdout
  74. Write speech output to stdout
  75. .TP
  76. .B \-\-compile=<voice name>
  77. Compile the pronunciation rules and dictionary in the current directory. =<voice name> is optional and specifies which language
  78. .TP
  79. .B \-\-path=<path>
  80. Specifies the directory containing the espeak-data directory
  81. .TP
  82. .B \-\-phonout=<filename>
  83. Write output from -x -X commands and mbrola phoneme data to this file
  84. .TP
  85. .B \-\-punct="<characters>"
  86. Speak the names of punctuation characters during speaking. If =<characters> is omitted, all punctuation is spoken.
  87. .TP
  88. .B \-k <integer>
  89. Indicate capital letters with: 1=sound, 2=the word "capitals", higher values = a pitch increase (try -k20).
  90. .TP
  91. .B \-\-voices[=<language code>]
  92. Lists the available voices. If =<language code> is present then only those voices which are suitable for that language are listed.
  93. .TP
  94. .B \-\-compile=voicename
  95. Compile the pronunciation rules and dictionary in the current directory. =<voice name> is optional and specifies which language
  96. .TP
  97. .B \-\-compile=debug
  98. Compile the pronunciation rules and dictionary in the current directory as above, but include line numbers, that get shown when -X is used.
  99. .SH AUTHOR
  100. eSpeak was written by Jonathan Duddington <jonsd@jsd.clara.co.uk>. The webpage for this package can be found at http://espeak.sourceforge.net/.
  101. .PP
  102. This manual page was written by Luke Yelavich <themuso@ubuntu.com>, for the Ubuntu project (but may be used by others).