Video montaj
Skill mustafayilmazart/kesif-claude-skills/skills/video-montaj
14 production-ready Claude Code skill — TTS, video, NotebookLM, YouTube, token optimization, prompt engineering
npx -y skills add mustafayilmazart/kesif-claude-skills --skill video-montajAssembled 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.
What its author says it does
Copied from the file, not written here
FFmpeg ile video montaj, format donusturme, altyazi yakma
SKILL.md
2.5 KB, 795 tokens by cl100k_base, as published. Nobody here has run it
Video Montaj Skill
FFmpeg tabanli video montaj, format donusturme ve altyazi yakma islemleri icin kullanilir.
Gereksinimler
- Python 3.8+
- FFmpeg sistemde yuklu ve PATH'te erisilebildiyor olmali
Scriptler
1. montaj.py -- Ana Video Montaj Motoru
Ses dosyasi ve gorsel(ler)den MP4 video uretir.
Kullanim:
# Tek gorsel + ses -> MP4
python montaj.py image --audio ses.mp3 --image foto.jpg --output video.mp4 --resolution 1080x1920
# Coklu gorsel + ses -> Slideshow MP4 (fade gecisler)
python montaj.py slideshow --audio ses.mp3 --images-dir slides/ --output video.mp4 --slide-duration 5
# 9:16 Reels formati
python montaj.py reels --audio ses.mp3 --images foto1.jpg foto2.jpg --output reels.mp4
Ozellikler:
- libx264 + AAC kodlama
- Slideshow modunda fade gecisler (crossfade)
- Reels modu: 1080x1920, 9:16 dikey format
- Otomatik cozunurluk ayarlama
2. format_convert.py -- Instagram Format Donusturme
Mevcut videoyu farkli sosyal medya formatlarina donusturur.
Kullanim:
# 9:16 Reels (1080x1920, max 90sn)
python format_convert.py reels --input video.mp4 --output reels.mp4
# 1:1 Kare (1080x1080)
python format_convert.py square --input video.mp4 --output square.mp4 --mode crop
# 4:5 Portre (1080x1350)
python format_convert.py portrait --input video.mp4 --output portrait.mp4 --mode pad
Modlar:
pad: Siyah kenarlik ekleyerek boyutlandirir (icerik kaybi yok)crop: Ortadan keserek boyutlandirir (tam dolum)
3. add_subtitles.py -- SRT Altyazi Yakma
SRT formatindaki altyazilari videoya hard-sub olarak yakar.
Kullanim:
# Varsayilan ayarlarla altyazi yak
python add_subtitles.py --video video.mp4 --srt altyazi.srt --output final.mp4
# Ozel stil ile
python add_subtitles.py --video video.mp4 --srt altyazi.srt --output final.mp4 \
--font-size 48 --font-color yellow --position center
Ozellikler:
- Turkce karakter destegi (UTF-8)
- Ayarlanabilir font boyutu, renk ve konum
- Yari saydam arka plan
Tipik Is Akisi
montaj.pyile ses + gorsellerden ham video olusturformat_convert.pyile hedef platforma uygun formata donusturadd_subtitles.pyile gerekirse altyazi yak
Notlar
- Tum scriptler
--helpile kullanim bilgisi verir - FFmpeg bulunamazsa anlasilir hata mesaji gosterir
- Cikti dosyasi zaten varsa uzerine yazar
What ships with it: 3 files
24.0 KB alongside SKILL.md, 3 of them executable
scripts/
- add_subtitles.pyruns6.8 KB
- format_convert.pyruns6.9 KB
- montaj.pyruns10.3 KB