()
| 106 | st.balloons() |
| 107 | |
| 108 | def main(): |
| 109 | logo_col, _ = st.columns([1,1]) |
| 110 | with logo_col: |
| 111 | st.image("docs/logo.png", width="stretch") |
| 112 | st.markdown(button_style, unsafe_allow_html=True) |
| 113 | welcome_text = t("Hello, welcome to VideoLingo. If you encounter any issues, feel free to get instant answers with our Free QA Agent <a href=\"https://share.fastgpt.in/chat/share?shareId=066w11n3r9aq6879r4z0v9rh\" target=\"_blank\">here</a>! You can also try out our SaaS website at <a href=\"https://videolingo.io\" target=\"_blank\">videolingo.io</a> for free!") |
| 114 | st.markdown(f"<p style='font-size: 20px; color: #808080;'>{welcome_text}</p>", unsafe_allow_html=True) |
| 115 | # add settings |
| 116 | with st.sidebar: |
| 117 | page_setting() |
| 118 | st.markdown(give_star_button, unsafe_allow_html=True) |
| 119 | download_video_section() |
| 120 | text_processing_section() |
| 121 | audio_processing_section() |
| 122 | |
| 123 | if __name__ == "__main__": |
| 124 | main() |
no test coverage detected