# seamlessM4T **Repository Path**: seamless-m4t-demo/seamlessM4T ## Basic Information - **Project Name**: seamlessM4T - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-24 - **Last Updated**: 2023-11-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # seamlessM4T Speech to Speech Translator PGD Mid Term Project for Python Course 1 I have used Seamless M4T Model for Speech to Speech Translator on Linux. Total project size was 5.3GB and that is why, I can't upload the full project on GIT. But below mentioned steps can be followed to run on LINUX Systems Successfully. ## MY UI ![alt text](https://github.com/drRamish/seamlessM4T/blob/main/Screenshot%20from%202023-09-20%2015-21-00.png) ## Tools Used: * VS Code for Coding * Python for backend code * Flask for frontend code ## Create a New Virtual Environment Project ``` # New Virtual Environment python -m venv newProject # Change Directory cd newProject # Activate the Virtual Environment source ./bin/activate ``` ## Install Flask ``` pip install Flask ``` ## Clone My Repo ``` git clone https://github.com/drRamish/seamlessM4T.git ``` ## Move Files to Flask Project * Move all files to your virtual environment project folder ## Install the Dependencies ``` pip install -r requirements.txt ``` ## Run the Project ``` python app.py ```