From: MarStr Date: Tue, 9 Jul 2024 11:32:26 +0000 (+0200) Subject: Corrections to README X-Git-Url: http://marstr.online/code/gitweb.cgi?a=commitdiff_plain;h=4610d28b6ca8c62d99559b6b7cc5815a7f804fdc;p=Pilot2AWS Corrections to README --- diff --git a/README.md b/README.md index 253de71..d44c1ef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -### Pilot2AWS +# Pilot2AWS A Python script allowing to use standard or neural voices of Amazon Polly, in Pilot2ATC. It does so by monitoring Pilot2ATC's output and leveraging Amazon's Polly technology, to generate voice responses that sound more natural. @@ -45,7 +45,7 @@ If you want to use AWS and its services elsewhere, you are of course free to ins You will need two Python modules: boto3 and pygame. Install them like so: -``` +```python pip install boto3 pip install pygame ``` @@ -53,7 +53,7 @@ pip install pygame Next, open up the Pilot2AWS.py script with your favorite editor and make the necessary adjustments as follows: -``` +```python # ------------------------------------------------------------------- # Enter your access data and your AWS region # ------------------------------------------------------------------- @@ -68,7 +68,7 @@ Most regions have access to Polly - selecting the correct region will accelerate If you want the script to show which voice it has selected and what the response is, you can change -``` +```python atc_show_responses = True ``` @@ -76,7 +76,7 @@ to True. Default is True. Setting this to False disables this display per line s Next, you need to select your voice model. Default is standard. -``` +```python atc_aws_voicemodel = 'standard' ``` @@ -84,7 +84,7 @@ Change this to 'neural' if you want to use the more sophisticated voice generati The next section defines where the text log that Pilot2ATC generates, is located. -``` +```python atc_pilot2atc_log = "C:\\Users\\windo\\Documents\\pilot2atclog.txt" ```