From bbf2fbefff3b72ed861881ff1e1c6a870c3cefcf Mon Sep 17 00:00:00 2001 From: coderGtm Date: Mon, 9 Dec 2024 13:37:38 +0530 Subject: [PATCH] added docs for tts --- docs/commands/tts.md | 15 +++++++++++++++ mkdocs.yml | 1 + 2 files changed, 16 insertions(+) create mode 100644 docs/commands/tts.md diff --git a/docs/commands/tts.md b/docs/commands/tts.md new file mode 100644 index 00000000..ca214880 --- /dev/null +++ b/docs/commands/tts.md @@ -0,0 +1,15 @@ +# tts + +The `tts` command stands for Text To Speech. As the name suggests, it is used for converting a text input to an audio output. + +## Usage +``` +tts +``` + +Internally, it uses the Google Speech Synthesis engine for converting the text to audio. The engine is invoked for the period of the synthesis and then shut back down to preserve resources. + +## Example +``` +tts Yantra Launcher is cool +``` diff --git a/mkdocs.yml b/mkdocs.yml index cca99459..7c9a5abb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,6 +19,7 @@ nav: - quote: commands/quote.md - internet: commands/internet.md - web: commands/web.md + - tts: commands/tts.md - reset: commands/reset.md - exit: commands/exit.md - Frequently Asked Questions: faq.md