From faea37a4d0a70e6a5ce7c02bb99ec47b0e42422b Mon Sep 17 00:00:00 2001 From: MarStr Date: Tue, 9 Jul 2024 13:43:07 +0200 Subject: [PATCH] Corrections to README --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 88b9eda..08bb699 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Note: this works fine on Windows. Linux and Mac are untested - but I see no reas **IMPORTANT:** Using this approach may end up not being free. You have a free allowance of 1 million characters per month, no matter which model you choose. But after that, using the service will incur costs. How high the costs are, depends on 1) the amount of ATC calls you make. More calls = more characters. And 2) the selected model. Neural voices are much more natural, but they also require more power to generate - hence the higher costs. To find out what is best for you, have a look at these pages first: + - [Amazon Polly Pricing](https://aws.amazon.com/polly/pricing/) - [AWS Polly Cost Calculator](https://calculator.aws/#/createCalculator/polly) @@ -46,16 +47,16 @@ 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 +pip install boto3 +pip install pygame ``` Next, open up the Pilot2AWS.py script with your favorite editor and make the necessary adjustments as follows: ```python -atc_aws_key = "YOUR_AWS_KEY"
-atc_aws_secret = "YOUR_AWS_SECRET"
-atc_aws_region = "SERVER REGION" +atc_aws_key = "YOUR_AWS_KEY" +atc_aws_secret = "YOUR_AWS_SECRET" +atc_aws_region = "SERVER REGION" ``` The first two are self-explanatory. These are the key and secret you have acquired in the previous step. -- 2.30.2