Udemy video pipeline
Skill mustafayilmazart/kesif-claude-skills/skills/udemy-video-pipeline
Udemy/eğitim videosu üretim pipeline'i. NotebookLM araştırma → Türkçe ders scripti → ElevenLabs seslendirme → video montaj. Udemy, ders videosu, kurs videosu, eğitim videosu, ders/kurs oluştur dediğinizde çağrılır. Bölüm-bazlı organizasyon ve altyazı desteği.From its SKILL.md
npx -y skills add mustafayilmazart/kesif-claude-skills --skill udemy-video-pipelineAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.0 KB, 883 tokens by cl100k_base, as published. Nobody here has run it
Udemy Video Pipeline
NotebookLM ile arastirma yapip, Turkce ders scripti uretip, ElevenLabs ile seslendiren tam otomasyon pipeline'i.
Pipeline Asamalari
1. Konu Arastirma (NotebookLM)
- YouTube'dan kaynak videolar bulunur
- NotebookLM'e kaynak olarak yuklenir
- Detayli Turkce analiz uretilir
2. Script Uretimi (Claude)
- NotebookLM analizinden ders scripti yazilir
- Slayt icerikleri cikarilir
- Zamanlama ve bolum planlanir
3. Seslendirme (ElevenLabs)
- Script bolum bolum seslendirilir
- Kullanicinin "Kesif -TR" sesi kullanilir
- MP3 dosyalari uretilir
4. Video Birleştirme (opsiyonel)
- Ses + slayt birlestirilir
- SRT altyazi eklenir
Kullanim
Tam Pipeline
python ~/.claude/skills/udemy-video-pipeline/scripts/create_course.py \
"Bagimlilik Norobiyolojisi" \
--sections 5 \
--voice "Kesif -TR" \
--output-dir <workspace>/udemy-courses/bagimlilik
Sadece Script Uret
python ~/.claude/skills/udemy-video-pipeline/scripts/generate_script.py \
--topic "Bagimlilik Norobiyolojisi" \
--analysis <workspace>/notebooklm/output/bagimlilik-analysis.md \
--sections 5 \
--output <workspace>/udemy-courses/bagimlilik/script.json
Script'ten Seslendirme
python ~/.claude/skills/udemy-video-pipeline/scripts/narrate_script.py \
--script <workspace>/udemy-courses/bagimlilik/script.json \
--voice "Kesif -TR" \
--output-dir <workspace>/udemy-courses/bagimlilik/audio
Script Formati (JSON)
{
"title": "Bagimlilik Norobiyolojisi",
"language": "tr",
"sections": [
{
"id": 1,
"title": "Giris: Bagimlilik Nedir?",
"duration_estimate": "5 min",
"narration": "Merhaba, bu derste bagimlilik norobiyolojisini...",
"slides": [
{ "type": "title", "content": "Bagimlilik Norobiyolojisi" },
{ "type": "bullet", "content": ["Tanimlama", "Beyin mekanizmalari"] }
],
"notes": "Ogrencilere kendi deneyimlerini dusunmelerini soyle"
}
]
}
Ses Ayarlari (Udemy Optimum)
- Model: eleven_multilingual_v2
- Stability: 0.65 (dogal ama tutarli)
- Similarity: 0.80 (sese sadik)
- Style: 0.15 (hafif vurgulu, monoton degil)
- Format: mp3_44100_128 (Udemy uyumlu)
Dizin Yapisi
output-dir/
script.json # Tam ders scripti
audio/
section_01.mp3 # Bolum seslendirmeleri
section_02.mp3
...
slides/
section_01.md # Slayt icerikleri
section_02.md
subtitles/
section_01.srt # Altyazilar
metadata.json # Kurs bilgileri
What ships with it: 3 files
20.4 KB alongside SKILL.md, 3 of them executable
scripts/
- create_course.pyruns4.7 KB
- generate_script.pyruns8.1 KB
- narrate_script.pyruns7.6 KB