Tüm Rehberler
OpenAI Whisper Kurulumu (Ses-Metin)
OpenAI Whisper modelini kurun ve ses dosyalarını metne dönüştürün.
Orta25 dk
Kurulum Adımları
1. ffmpeg kurun (ses işleme için gerekli):
sudo apt install ffmpeg2. Whisper'ı pip ile kurun:
pip install openai-whisper3. Komut satırından kullanım:
whisper ses_dosyasi.mp3 --language Turkish --model medium4. Mevcut modeller (küçükten büyüğe): tiny, base, small, medium, large-v3
5. Python ile kullanım:
python
import whisper
model = whisper.load_model("medium")
result = model.transcribe("ses_dosyasi.mp3", language="tr")
print(result["text"])6. Altyazı formatında çıktı alma:
whisper ses.mp3 --language tr --output_format srt7. GPU hızlandırma ile kullanım:
python
model = whisper.load_model("large-v3", device="cuda")8. Faster Whisper alternatifi (daha hızlı):
pip install faster-whisperpython
from faster_whisper import WhisperModel
model = WhisperModel("large-v3", device="cuda")
segments, info = model.transcribe("ses.mp3", language="tr")
for segment in segments:
print(f"[{segment.start:.2f}s -> {segment.end:.2f}s] {segment.text}")İlgili Rehberler
Claude Code Kurulumu
Anthropic Claude Code CLI aracını sunucu veya PC'ye kurun. API anahtarı yapılandırması ve temel komutlar.
ChatGPT API Kurulumu
OpenAI ChatGPT API'yi projenize entegre edin. API anahtarı alma ve ilk istek gönderme.
Google Gemini API Kurulumu
Google Gemini (eski adıyla Bard) API'yi kurun ve projelerinizde kullanın.
Midjourney Kullanım Rehberi
Midjourney ile AI destekli görseller oluşturun. Discord üzerinden kullanım adımları.