Skip to main content
Core.Today
|
Whisper빠름울트라

Incredibly Fast Whisper

속도에 최적화된 Whisper large-v3입니다 (3,800만+ 실행). 배치 추론으로 약 150분 분량 오디오를 100초 이내에 전사합니다. 청크/단어 단위 타임스탬프를 지원합니다.

10 크레딧
실행당
약 150분 오디오를 100초 이내 전사
Whisper large-v3 정확도
청크/단어 단위 타임스탬프
전사(transcribe)·번역(translate) 모드
배치 크기 조절 가능한 배치 추론

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "vaibhavs10/incredibly-fast-whisper",
  "input": {
    "audio": "https://example.com/podcast-episode.mp3",
    "task": "transcribe",
    "timestamp": "word"
  }
}'

파라미터

파라미터타입필수기본값설명
audiostringYes-전사할 오디오 파일
taskstringNotranscribetranscribe(원어 전사) 또는 translate(영어 번역)
transcribetranslate
languagestringNoNone오디오 언어 (비우면 자동 감지, 한국어는 'korean')
Noneafrikaansalbanianamharicarabicarmenianassameseazerbaijanibashkirbasquebelarusianbengalibosnianbretonbulgariancantonesecatalanchinesecroatianczechdanishdutchenglishestonianfaroesefinnishfrenchgaliciangeorgiangermangreekgujaratihaitian creolehausahawaiianhebrewhindihungarianicelandicindonesianitalianjapanesejavanesekannadakazakhkhmerkoreanlaolatinlatvianlingalalithuanianluxembourgishmacedonianmalagasymalaymalayalammaltesemaorimarathimongolianmyanmarnepalinorwegiannynorskoccitanpashtopersianpolishportuguesepunjabiromanianrussiansanskritserbianshonasindhisinhalaslovaksloveniansomalispanishsundaneseswahiliswedishtagalogtajiktamiltatarteluguthaitibetanturkishturkmenukrainianurduuzbekvietnamesewelshyiddishyoruba
batch_sizeintegerNo24병렬 배치 수. 메모리 오류 시 줄이세요
timestampstringNochunk청크 또는 단어 단위 타임스탬프
chunkword
diarise_audiobooleanNofalsePyannote.audio로 오디오 클립의 화자를 분리합니다. 아래 hf_token도 함께 제공해야 합니다.
hf_tokenstringNo-Pyannote.audio 화자 분리를 위한 hf.co/settings/token. 먼저 'https://huggingface.co/pyannote/speaker-diarization-3.1' 및 'https://huggingface.co/pyannote/segmentation-3.0' 약관에 동의해야 합니다.

파일 입력 방법

이 모델의 audio 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=vaibhavs10/incredibly-fast-whisper" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:audio=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "vaibhavs10/incredibly-fast-whisper",
  "input": {
    "prompt": "your prompt here",
    "audio": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

팟캐스트 고속 전사

단어 타임스탬프와 함께 긴 녹음 전사

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "vaibhavs10/incredibly-fast-whisper",
  "input": {
    "audio": "https://example.com/podcast-episode.mp3",
    "task": "transcribe",
    "timestamp": "word"
  }
}'

팁 & 모범 사례

11시간 이상 오디오 전사에 카탈로그에서 가장 빠른 선택지입니다
2timestamp: 'word'면 노래방 스타일 자막 정렬이 가능합니다
3표준 Whisper와 같은 13크레딧 — 긴 파일은 이 모델을 쓰세요
4긴 파일이 메모리 오류로 실패하면 batch_size를 12-16으로 줄이세요

사용 사례

장시간 팟캐스트·강의 전사
오디오 아카이브 대량 처리
준실시간 전사 파이프라인
단어 단위 자막 정렬
통화 녹음 분석