]> marstr Code Repo - Pilot2AWS/commitdiff
Corrections to README
authorMarStr <marcus@marstr.online>
Tue, 9 Jul 2024 11:32:26 +0000 (13:32 +0200)
committerMarStr <marcus@marstr.online>
Tue, 9 Jul 2024 11:32:26 +0000 (13:32 +0200)
README.md

index 253de71c324d814df0bb7ef32d14df7196025333..d44c1efbc4b11744962f6d247fcb7e004f8482bf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-### Pilot2AWS\r
+# Pilot2AWS\r
 \r
 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.\r
 \r
@@ -45,7 +45,7 @@ If you want to use AWS and its services elsewhere, you are of course free to ins
 \r
 You will need two Python modules: boto3 and pygame. Install them like so:\r
 \r
-```\r
+```python\r
 pip install boto3\r
 pip install pygame\r
 ```\r
@@ -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:\r
 \r
 \r
-```\r
+```python\r
 # -------------------------------------------------------------------\r
 # Enter your access data and your AWS region\r
 # -------------------------------------------------------------------\r
@@ -68,7 +68,7 @@ Most regions have access to Polly - selecting the correct region will accelerate
 \r
 If you want the script to show which voice it has selected and what the response is, you can change\r
 \r
-```\r
+```python\r
 atc_show_responses = True\r
 ```\r
 \r
@@ -76,7 +76,7 @@ to True. Default is True. Setting this to False disables this display per line s
 \r
 Next, you need to select your voice model. Default is standard.\r
 \r
-```\r
+```python\r
 atc_aws_voicemodel = 'standard'\r
 ```\r
 \r
@@ -84,7 +84,7 @@ Change this to 'neural' if you want to use the more sophisticated voice generati
 \r
 The next section defines where the text log that Pilot2ATC generates, is located.\r
 \r
-```\r
+```python\r
 atc_pilot2atc_log = "C:\\Users\\windo\\Documents\\pilot2atclog.txt"\r
 ```\r
 \r