Youtube-Whisper
A Gradio app that transcribes YouTube videos using audio extraction and OpenAI’s Whisper model.
File Explorer
Download Latest Version (.zip)- sync_to_huggingface_space.yml
- demo.gif
- .gitattributes
- .gitignore
- app.py
- Dockerfile
- download_video.py
- environment.yml
- LICENSE
- packages.txt
- README.md
- requirements.txt
# Installation Guide
git clone https://github.com/danilotpnta/Youtube-Whisper
Downloads the entire project code from GitHub to your computer.
cd Youtube-Whisper
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommendedbrew install ffmpeg
Installs the pre-built package via Homebrew — no source build required.
sudo apt install ffmpeg
Installs directly from the APT package repository (Debian/Ubuntu-based).
pip install --upgrade pip
Installs the package published on PyPI directly — no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t youtube-whisper .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 youtube-whisper
Runs the built image as an actual container.
4. Python
Easypip install --upgrade pip
Installs the package published on PyPI directly — no need to clone the source.
Pulled directly from this repo's README.
