Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new HD voice (Brian) #10

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,18 @@
voice_1 = col1.selectbox(
"Voice 1",
options=list(AZURE_HD_VOICES.keys()),
index=0,
index=list(AZURE_HD_VOICES.keys()).index("Andrew")
if "Andrew" in AZURE_HD_VOICES
else 0,
)

# Voice 2 select box
voice_2 = col2.selectbox(
"Voice 2",
options=list(AZURE_HD_VOICES.keys()),
index=4,
index=list(AZURE_HD_VOICES.keys()).index("Emma")
if "Emma" in AZURE_HD_VOICES
else 1,
)

# Submit button
Expand Down
1 change: 1 addition & 0 deletions app/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"Andrew": "en-US-Andrew2:DragonHDLatestNeural",
"Aria": "en-US-Aria:DragonHDLatestNeural",
"Ava": "en-US-Ava:DragonHDLatestNeural",
"Brian": "en-US-Brian:DragonHDLatestNeural",
"Davis": "en-US-Davis:DragonHDLatestNeural",
# "Emma": "en-US-Emma:DragonHDLatestNeural",
"Emma": "en-US-Emma2:DragonHDLatestNeural",
Expand Down