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! πŸ’¬πŸŒ

    """)