awacke1 commited on
Commit
d8ec6f4
Β·
verified Β·
1 Parent(s): d500c6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +40 -37
app.py CHANGED
@@ -919,46 +919,49 @@ def display_voice_tab():
919
  """
920
 
921
  # β–Ά Voice Settings
922
- st.sidebar.markdown("### 🎀 Voice Settings")
923
- caption_female = 'Top: 🌸 **Aria** – 🎢 **Jenny** – 🌺 **Sonia** – 🌌 **Natasha** – 🌷 **Clara**'
924
- caption_male = 'Bottom: 🌟 **Guy** – πŸ› οΈ **Ryan** – 🎻 **William** – 🌟 **Liam**'
 
 
 
 
 
 
 
925
 
926
- # Optionally, replace with your own local image or comment out
927
- try:
928
- st.sidebar.image('Group Picture - Voices.png', caption=caption_female + ' | ' + caption_male)
929
- except:
930
- st.sidebar.write('.')
931
-
932
- selected_voice = st.sidebar.selectbox(
933
- "πŸ‘„ Select TTS Voice:",
934
- options=EDGE_TTS_VOICES,
935
- index=EDGE_TTS_VOICES.index(st.session_state['tts_voice'])
936
- )
 
 
 
 
 
937
 
938
- st.sidebar.markdown("""
939
- # πŸŽ™οΈ Voice Character Agent Selector 🎭
940
- *Female Voices*:
941
- - 🌸 **Aria** – Elegant, creative storytelling
942
- - 🎢 **Jenny** – Friendly, conversational
943
- - 🌺 **Sonia** – Bold, confident
944
- - 🌌 **Natasha** – Sophisticated, mysterious
945
- - 🌷 **Clara** – Cheerful, empathetic
946
-
947
- *Male Voices*:
948
- - 🌟 **Guy** – Authoritative, versatile
949
- - πŸ› οΈ **Ryan** – Approachable, casual
950
- - 🎻 **William** – Classic, scholarly
951
- - 🌟 **Liam** – Energetic, engaging
952
- """)
953
 
954
-
955
- # β–Ά Audio Format
956
- st.markdown("### πŸ”Š Audio Format")
957
- selected_format = st.radio(
958
- "Choose Audio Format:",
959
- options=["MP3", "WAV"],
960
- index=0
961
- )
962
 
963
  # β–Ά Update session state if changed
964
  if selected_voice != st.session_state['tts_voice']:
 
919
  """
920
 
921
  # β–Ά Voice Settings
922
+ with st.expander("🎀 Voice Settings"):
923
+ st.sidebar.markdown("### 🎀 Voice Settings")
924
+ caption_female = 'Top: 🌸 **Aria** – 🎢 **Jenny** – 🌺 **Sonia** – 🌌 **Natasha** – 🌷 **Clara**'
925
+ caption_male = 'Bottom: 🌟 **Guy** – πŸ› οΈ **Ryan** – 🎻 **William** – 🌟 **Liam**'
926
+
927
+ # Optionally, replace with your own local image or comment out
928
+ try:
929
+ st.sidebar.image('Group Picture - Voices.png', caption=caption_female + ' | ' + caption_male)
930
+ except:
931
+ st.sidebar.write('.')
932
 
933
+ selected_voice = st.sidebar.selectbox(
934
+ "πŸ‘„ Select TTS Voice:",
935
+ options=EDGE_TTS_VOICES,
936
+ index=EDGE_TTS_VOICES.index(st.session_state['tts_voice'])
937
+ )
938
+
939
+
940
+ with st.expander("πŸŽ™οΈ Voice Character Agent Selector 🎭"):
941
+ st.sidebar.markdown("""
942
+ # πŸŽ™οΈ Voice Character Agent Selector 🎭
943
+ *Female Voices*:
944
+ - 🌸 **Aria** – Elegant, creative storytelling
945
+ - 🎢 **Jenny** – Friendly, conversational
946
+ - 🌺 **Sonia** – Bold, confident
947
+ - 🌌 **Natasha** – Sophisticated, mysterious
948
+ - 🌷 **Clara** – Cheerful, empathetic
949
 
950
+ *Male Voices*:
951
+ - 🌟 **Guy** – Authoritative, versatile
952
+ - πŸ› οΈ **Ryan** – Approachable, casual
953
+ - 🎻 **William** – Classic, scholarly
954
+ - 🌟 **Liam** – Energetic, engaging
955
+ """)
956
+
 
 
 
 
 
 
 
 
957
 
958
+ # β–Ά Audio Format
959
+ st.markdown("### πŸ”Š Audio Format")
960
+ selected_format = st.radio(
961
+ "Choose Audio Format:",
962
+ options=["MP3", "WAV"],
963
+ index=0
964
+ )
 
965
 
966
  # β–Ά Update session state if changed
967
  if selected_voice != st.session_state['tts_voice']: