mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:41:09 +02:00
Rebranding the transcriber application to better reflect its purpose: AI-powered wisdom extraction from video content. Changes: - Renamed folder: apps/transcriber → apps/wisekeep - Updated all package names to @wisekeep/* namespace: - @wisekeep/backend - @wisekeep/web - @wisekeep/landing - @wisekeep/mobile - @wisekeep/shared-types - Updated root package.json scripts: - wisekeep:dev, dev:wisekeep:backend, dev:wisekeep:web, etc. - Updated documentation in CLAUDE.md files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
No EOL
1.4 KiB
Bash
Executable file
44 lines
No EOL
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
# YouTube Transcriber - Schnellauswahl
|
|
|
|
source venv/bin/activate
|
|
|
|
echo "🎥 YouTube Transcriber - Modell-Auswahl"
|
|
echo "========================================"
|
|
echo ""
|
|
echo "1) 🚀 TINY - Schneller Test (39MB, ~10x Speed)"
|
|
echo "2) 🎯 LARGE - Beste Qualität (1.5GB, ~1x Speed)"
|
|
echo "3) 📋 SCAN - Alle Playlists scannen"
|
|
echo "4) ⚡ PARALLEL - Mehrere Videos parallel (3x Speed)"
|
|
echo ""
|
|
read -p "Wähle Modell (1-4): " choice
|
|
|
|
case $choice in
|
|
1)
|
|
echo "→ Nutze TINY Modell für schnellen Test"
|
|
read -p "YouTube URL: " url
|
|
python3 transcriber_v3.py process "$url" --model tiny
|
|
;;
|
|
2)
|
|
echo "→ Nutze LARGE Modell für beste Qualität"
|
|
read -p "YouTube URL: " url
|
|
python3 transcriber_v3.py process "$url" --model large
|
|
;;
|
|
3)
|
|
echo "→ Scanne alle Playlists mit LARGE Modell"
|
|
python3 transcriber_v3.py scan --model large
|
|
;;
|
|
4)
|
|
echo "→ Parallel-Verarbeitung (3x schneller!)"
|
|
echo "Gib URLs ein (mit Leerzeichen getrennt, oder Enter für Playlist):"
|
|
read -p "URLs: " urls
|
|
if [ -z "$urls" ]; then
|
|
python3 transcriber_v4_parallel.py process --playlist people/rory-sutherland --model large
|
|
else
|
|
python3 transcriber_v4_parallel.py process --urls $urls --model large
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Ungültige Auswahl"
|
|
;;
|
|
esac |