📁
Arraste e solte seu arquivo de áudio aqui
ou clique para selecionar
Formatos suportados: MP3, WAV, OGG, M4A, FLAC, WEBM, MP4
📚 Documentação da API
Endpoint: POST /webhook/transcribe ou POST /api/transcribe
Exemplo cURL:
curl -X POST https://whisper.vpsenterprise.com/webhook/transcribe \
-F "file=@audio.mp3" \
-F "language=pt" \
-F "task=transcribe"
Exemplo Python:
import requests
url = "https://whisper.vpsenterprise.com/webhook/transcribe"
files = {"file": open("audio.mp3", "rb")}
data = {"language": "pt", "task": "transcribe"}
response = requests.post(url, files=files, data=data)
result = response.json()
print(result["text"])
Resposta JSON:
{
"success": true,
"text": "Texto transcrito completo...",
"language": "pt",
"segments": [
{
"id": 0,
"start": 0.0,
"end": 5.5,
"text": "Primeiro segmento..."
}
],
"filename": "audio.mp3",
"timestamp": "2024-01-01T12:00:00"
}