Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.8 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.8 KB

Youtube Transcriber

YouTube Transcriber is a web application that transcribes YouTube videos into text. It is built with Python, Flask.

The transcriber uses the Audio-wizard model that I trained based on deep-speech-2 paper.

You can find more details about the model here.

To use the application, simply enter the URL of the YouTube video you want to transcribe and click the "Transcribe" button. The application will then generate a transcript of the video, which you can then download or copy and paste into another document.

YouTube Transcriber is a useful tool for anyone who wants to make their YouTube videos more accessible to a wider audience, or who needs to transcribe YouTube videos for research or other purposes.

Here are some of the benefits of using YouTube Transcriber:

  • Make your YouTube videos more accessible to viewers with hearing disabilities
  • Improve the SEO of your YouTube videos by making them easier to search for
  • Create transcripts of your YouTube videos for blogging, research, or other purposes
  • Easily share transcripts of your YouTube videos on social media or other websites

Try YouTube Transcriber today and see how easy it is to transcribe your YouTube videos into text!

Software and Tools Requirements

  1. Github Account
  2. Heroku Account
  3. VS Code IDE
  4. GitCLI

Step 1: Create a new environment

conda create -p venv python==3.10 -y

Step 2: Activate Environment

conda activate venv/

Step 3: Install dependencies

pip install -r requirements.txt

Step 4: Run the application

flask run app.py