upload README.md

main
Christos Angelopoulos 2022-03-07 01:00:19 +02:00
parent 0d263f1370
commit 5c6f200ba9
1 changed files with 23 additions and 0 deletions

View File

@ -30,10 +30,14 @@ The list of words is growing as the script gets used more, ___<u>feel free to ch
### SCREENSHOTS
* File selection dialog
![0.png](screenshots/0.png)
---
* The file is delimited to lines with fewer characters each, so there will be no problem with the text-to-speech conversion due to excessively long lines. However, the user can edit the file further before thw speech conversion.
![1.png](screenshots/1.png)
---
@ -42,9 +46,28 @@ The list of words is growing as the script gets used more, ___<u>feel free to ch
---
* Progress bar , and rough estimate of time left (probably depends on hardware)
![3.png](screenshots/3.png)
---
* Process complete, the final wav file is inside the created **Sapo_filename** folder, named **filename.wav**.
If the wav files (one for each line of text file) are too many, the final wav file
will not be produced. In this case concatetate the wav files in smaller batches ( every 500 files), and then concatenate _those_ to the final sound file, using the **sox** command, for example:
> cd Sapo_1_1.txt
>
> sox {000001..000500}.wav ~/Desktop/1f.wav
>
> sox {000501..001000}.wav ~/Desktop/2f.wav
>
> sox {001001..001500}.wav ~/Desktop/3f.wav
>
> cd ~/Desktop
>
> sox {1..33}f.wav final.wav
>
![4.png](screenshots/4.png)