diff --git a/README.md b/README.md index ab040dd..262edc1 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,5 @@ The only original thing being done is the editing and gathering of all materials 2. Run `pip install -r requirements.txt` 3. Run `python -m playwright install` and `python -m playwright install-deps` -## Video - -https://user-images.githubusercontent.com/66544866/173453972-6526e4e6-c6ef-41c5-ab40-5d275e724e7c.mp4 - ## LICENSE [Roboto Fonts](https://fonts.google.com/specimen/Roboto/about) are licensed under [Apache License V2](https://www.apache.org/licenses/LICENSE-2.0) diff --git a/main.py b/main.py index 8a19fc6..4730f0b 100755 --- a/main.py +++ b/main.py @@ -147,7 +147,7 @@ def run(): if __name__ == "__main__": - if sys.version_info.major != 3 or sys.version_info.minor != 10: + if sys.version_info.major != 3 or sys.version_info.minor not in [10, 11]: print( "Hey! Congratulations, you've made it so far (which is pretty rare with no Python 3.10). Unfortunately, this program only works on Python 3.10. Please install Python 3.10 and try again." ) diff --git a/utils/.config.template.toml b/utils/.config.template.toml index 941271f..1753c71 100644 --- a/utils/.config.template.toml +++ b/utils/.config.template.toml @@ -56,7 +56,7 @@ background_thumbnail_font_color = { optional = true, default = "255,255,255", ex [settings.tts] voice_choice = { optional = false, default = "tiktok", options = ["elevenlabs", "streamlabspolly", "tiktok", "googletranslate", "awspolly", "pyttsx", "unrealspeech", ], example = "tiktok", explanation = "The voice platform used for TTS generation. " } -random_voice = { optional = false, default = true, example = true, options = [true, false,], explanation = "Randomizes the voice used for each comment" } +random_voice = { optional = false, default = true, example = true, type = "bool", options = [true, false,], explanation = "Randomizes the voice used for each comment" } elevenlabs_voice_name = { optional = false, default = "Bella", example = "Bella", explanation = "The voice used for elevenlabs", options = ["Adam", "Antoni", "Arnold", "Bella", "Domi", "Elli", "Josh", "Rachel", "Sam", ] } elevenlabs_api_key = { optional = true, example = "21f13f91f54d741e2ae27d2ab1b99d59", explanation = "Elevenlabs API key" } unreal_speech_api_key = { optional = true, example = "21f13f91f54d741e2ae27d2ab1b99d59", explanation = "Unreal Speech API key" }