Chirp 3 vs Fun-ASR Flash
언제 어떤 모델을 사용할까 — 벤치마크 표가 아닌 선별된 평가
둘 다 오디오 분당 과금이고 fun-asr-flash가 7.6배 저렴합니다($0.0021 대 $0.016). 다만 더 좁은 도구입니다: 동기 인식만, 파일당 5분 또는 2GB, 30개 이상 언어, 화자 분리 없음. chirp-3은 GA 29개에 프리뷰 82개 로케일을 다루고 배치는 최대 한 시간, 실시간 스트림도 처리하며 14개 언어에서 분리를 합니다. 짧은 클립을 대량으로 처리하려면 fun-asr-flash를, 분리·긴 파일·넓은 로케일이 필요하면 chirp-3을 고르세요.
가격
| Chirp 3 | Fun-ASR Flash | Δ | |
|---|---|---|---|
| 오디오 분당 | $0.016 | $0.0021 | 7.6× |
빌드 시점의 라이브 카탈로그 요금입니다. 각 모델 페이지에 현재 요금표가 표시됩니다.
현재 위치 — 이 청구 단위를 사용하는 모든 11개의 음성 텍스트 변환 모델 전체의 오디오 분당 가격 (로그 스케일)
기능
| Chirp 3 | Fun-ASR Flash | |
|---|---|---|
| 화자 분리 | 예 | 아니요 |
| 스트리밍 | 예 | 예 |
| 타임스탬프 | 예 | — |
사양
| Chirp 3 | Fun-ASR Flash | |
|---|---|---|
| 입력 모달리티 | 오디오 | 오디오 |
| 출력 모달리티 | 텍스트 | 텍스트 |
| 출시일 | 2025-10-13 | 2026-06 |
| 제한 | Auto-detected audio decoding sync Recognize <1 min, BatchRecognize 1 min–1 hr (<=20 min with word timestamps), StreamingRecognize for real-time speaker diarization in BatchRecognize and Recognize (14 languages) utterance-level timestamps (StreamingRecognize only), word-level timestamps listed as unsupported language-agnostic transcription 29 GA + 82 preview locales | Synchronous fast recognition, <=5 min / <=2GB per audio context injection for domain terms 30+ languages no diarization |
| 언어 | 29 GA + 82 Preview locales (111 total) across StreamingRecognize, Recognize and BatchRecognize diarization covers 14 of them | Multilingual with dialects, the same 30-language list as the Fun-ASR main versions: Chinese (Mandarin, Cantonese, Wu, Hokkien, Hakka, Gan, Xiang, Jin plus regional accents), English, Japanese, Korean, Vietnamese, Thai, Indonesian, Malay, Filipino, Hindi, Arabic, French, German, Spanish, Portuguese, Russian, Italian, Dutch, Swedish, Danish, Finnish, Norwegian, Greek, Polish, Czech, Hungarian, Romanian, Bulgarian, Croatian, Slovak |
사양은 각 공급업체의 문서를 그대로 기록한 것입니다. 공급업체가 공개하지 않은 항목은 추론하지 않고 제외했습니다. 전체 출처: Chirp 3 · Fun-ASR Flash
코드 한 줄로 모델 전환
두 id는 아래의 모든 탭에 있습니다 — 강조 표시된 두 줄이 유일한 수정 사항입니다. 동일한 엔드포인트, 동일한 키, 동일한 요청 형태입니다.
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.audio.transcriptions.create(
model="chirp-3",
# model="fun-asr-flash", # 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
file=open("meeting.mp3", "rb"),
language="en",
)
print(resp.text)import OpenAI from "openai";
import fs from "node:fs";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.audio.transcriptions.create({
model: "chirp-3",
// model: "fun-asr-flash", // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
file: fs.createReadStream("meeting.mp3"),
});
console.log(resp.text);curl https://synthorai.io/v1/audio/transcriptions \
-H "Authorization: Bearer sk-syn-..." \
-F model="chirp-3" \
# -F model="fun-asr-flash" \ # 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
-F file=@meeting.mp3package main
import (
"context"
"fmt"
"os"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
f, _ := os.Open("meeting.mp3")
resp, _ := client.Audio.Transcriptions.New(context.TODO(), openai.AudioTranscriptionNewParams{
Model: "chirp-3",
// Model: "fun-asr-flash", // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
File: f,
})
fmt.Println(resp.Text)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.audio.transcriptions.*;
import java.nio.file.Paths;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
Transcription resp = client.audio().transcriptions().create(
TranscriptionCreateParams.builder()
.model("chirp-3")
// .model("fun-asr-flash") // 이 줄의 주석을 해제하고, 윗줄을 주석 처리하세요
.file(Paths.get("meeting.mp3"))
.build()).asTranscription();
System.out.println(resp.text());FAQ
Chirp 3와(과) Fun-ASR Flash 중 어느 것이 더 저렴한가요?
오디오 분당 항목에서는 Fun-ASR Flash이(가) 더 저렴합니다($0.0021 대 $0.016, 7.6× 차이). 다른 항목에서는 결과가 다를 수 있습니다 — 위의 표에 전체 정보가 있으며, 실제 비용은 사용 조합에 따라 달라집니다.
두 번의 연동 과정 없이 Chirp 3와(과) Fun-ASR Flash를 A/B 테스트할 수 있나요?
네. 둘 다 하나의 API 키를 사용하여 동일한 OpenAI 호환 엔드포인트를 통해 제공됩니다 — 모델 문자열을 한 줄만 변경하면 전환되므로, 트래픽의 일부를 각각 라우팅하여 요금을 직접 비교할 수 있습니다.
Chirp 3와(과) Fun-ASR Flash가 화자 분리를 지원하나요?
위의 기능 표는 각 공급업체의 문서에서 직접 가져와 모델별로 이에 대한 답변을 제공합니다 — 화자 분리, 스트리밍 및 타임스탬프는 모델마다 지원 여부가 다르므로 별도로 나열되어 있습니다.