A powerful online transcription tool
TransMe is an advanced transcription management system that provides real-time speech-to-text conversion, terminology extraction, translation, and summarization. It integrates AI-based speech recognition with a user-friendly text editor to enhance productivity.
- 🎤 Speech-to-Text – Converts audio recordings into editable text.
- 🔍 Terminology Extraction – Automatically identifies and highlights key terms.
- 🔄 Translation & Summarization – Provides multilingual translations and concise summaries.
- 📂 Audio Management – Upload, organize, and process audio files.
- 🔐 Secure Authentication – User authentication with JWT and role-based access control.
- 🎛 Intuitive UI – Block-based text editing for easy content structuring.
- Frontend: React, Redux, Material-UI
- Backend: Spring Boot, MongoDB, Google Speech-to-Text API
- Authentication: JWT-based security
- Cloud Storage: Google Drive API for audio files
- Deployment: Docker (planned), GitLab CI/CD
git clone https://github.com/Fiona1121/trans-me.git
cd trans-me-
Navigate to the backend directory
cd backend -
Set up environment variables in a
.envfile:SERVER_PORT=8080 MONGO_URI=<your_mongodb_connection_string> JWT_SECRET=<your_jwt_secret> GOOGLE_API_KEY=<your_google_api_key>
-
Install dependencies and start the backend
mvn clean install mvn spring-boot:run
-
Navigate to the frontend directory
cd ../frontend -
Install dependencies
npm install
-
Start the frontend server
npm start
-
Open http://localhost:3000 in your browser.
trans-me/
├── backend/
│ ├── src/main/java/com/transme/
│ │ ├── controllers/ # API Controllers
│ │ ├── services/ # Business Logic
│ │ ├── models/ # MongoDB Schema
│ │ ├── config/ # Security & Configurations
│ │ ├── repositories/ # Database Access Layer
│ ├── application.yml # Spring Boot Configurations
│ ├── pom.xml # Maven Dependencies
│ ├── Dockerfile # Planned Deployment
├── frontend/
│ ├── src/components/ # UI Components
│ ├── src/pages/ # Application Pages
│ ├── src/redux/ # Global State Management
│ ├── src/api/ # API Calls
│ ├── package.json # Node Dependencies
│ ├── Dockerfile # Planned Deployment
└── README.md
-
Upload an Audio File
- Supports
.wavformat - Uses Google Speech-to-Text for transcription
- Supports
-
Text Editing & Block Management
- Add, remove, and restructure blocks of text
- Extract key terms for further use
-
Translation & Summarization
- Get instant translations in multiple languages
- Summarize lengthy transcripts automatically
-
User Authentication
- Secure login & registration using JWT
- Speech-to-Text Integration
- Terminology Extraction
- UI Enhancements for Block-based Editing
- Docker Deployment
- CI/CD Integration with GitLab