Spaces:
Running
Running
File size: 1,656 Bytes
1c2fdca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import streamlit as st
def about_page():
st.title("π About VoiceBridge")
st.markdown("""
**VoiceBridge** is a smart and user-friendly app designed to help you **translate speech or text across multiple languages** and analyze the **emotional tone** of the message.
---
### π What Can VoiceBridge Do?
- π£οΈ Convert **voice to text** using speech recognition
- π Translate text or speech into other languages using Deep Translator (Google Translate)
- π¬ Detect the **sentiment or tone** of the message using local and cloud-based models
---
### π§ Technologies Used
- **Speech Recognition**: `speech_recognition` library for converting audio to text
- **Translation**: `deep_translator` with Google Translate for accurate text translation
- **Sentiment Analysis**:
- For text: Hugging Face Transformer models (e.g., BERT-based sentiment classification)
- For voice: A local emotion detection model to analyze audio tone
---
### π― Why VoiceBridge?
VoiceBridge is created to:
- Break language barriers in real-time
- Help understand the emotional intent of communication
- Enable better interaction in global, multicultural environments
- Support accessibility and learning
---
### π¨βπ» Developer Info
**Developed by**: Ayush & Manav
π [GitHub](https://github.com/yourusername) | [LinkedIn](https://linkedin.com/in/yourprofile)
---
π VoiceBridge is open for collaboration and feedback. Let's bridge the gap between voices and languages! π¬π
""")
|