Corrections to README

This commit is contained in:
MarStr 2024-07-09 13:32:26 +02:00
parent e7e8e5ec59
commit 4610d28b6c

View File

@ -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. 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: You will need two Python modules: boto3 and pygame. Install them like so:
``` ```python
pip install boto3 pip install boto3
pip install pygame 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: 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 # 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 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 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. Next, you need to select your voice model. Default is standard.
``` ```python
atc_aws_voicemodel = 'standard' 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. The next section defines where the text log that Pilot2ATC generates, is located.
``` ```python
atc_pilot2atc_log = "C:\\Users\\windo\\Documents\\pilot2atclog.txt" atc_pilot2atc_log = "C:\\Users\\windo\\Documents\\pilot2atclog.txt"
``` ```