Loading repository data…
Loading repository data…
tcsenpai / repository
YouLama is a web application that allows users to generate summaries or easy to read transcripts of YouTube videos using AI-powered language models.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A powerful web application for transcribing and summarizing YouTube videos and local media files using faster-whisper and Ollama.
git clone <repository-url>
cd youlama
# Add NVIDIA package repositories
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
# Install nvidia-docker2 package
sudo apt-get update
sudo apt-get install -y nvidia-docker2
# Restart the Docker daemon
sudo systemctl restart docker
curl https://ollama.ai/install.sh | sh
cp .env.example .env
.env: Set your environment variablesconfig.ini: Configure Whisper, Ollama, and application settingsollama serve
docker-compose up --build
http://localhost:7860
# Server configuration
SERVER_NAME=0.0.0.0
SERVER_PORT=7860
SHARE=true
[whisper]
default_model = base
device = cuda
compute_type = float16
beam_size = 5
vad_filter = true
[app]
max_duration = 3600
server_name = 0.0.0.0
server_port = 7860
share = true
[models]
available_models = tiny,base,small,medium,large-v1,large-v2,large-v3
[languages]
available_languages = en,es,fr,de,it,pt,nl,ja,ko,zh
[ollama]
enabled = false
url = http://host.docker.internal:11434
default_model = mistral
summarize_prompt = Please provide a comprehensive yet concise summary of the following text. Focus on the main points, key arguments, and important details while maintaining accuracy and completeness. Here's the text to summarize:
models directoryThis project is licensed under the MIT License - see the LICENSE file for details.