Fun-ASR Realtime
Alibaba transcription
價格$0.002/min
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。
30 秒用上 Fun-ASR Realtime
OpenAI 相容:換掉 base_url,SDK 不用改。POST /v1/audio/transcriptions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.audio.transcriptions.create(
model="fun-asr-realtime",
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: "fun-asr-realtime",
file: fs.createReadStream("meeting.mp3"),
});
console.log(resp.text);curl https://synthorai.io/v1/audio/transcriptions \
-H "Authorization: Bearer sk-syn-..." \
-F model="fun-asr-realtime" \
-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: "fun-asr-realtime",
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("fun-asr-realtime")
.file(Paths.get("meeting.mp3"))
.build()).asTranscription();
System.out.println(resp.text());關於 Fun-ASR Realtime
流式轉寫,時長無上限
為即時字幕與會議打造
熱詞定製,多語言覆蓋
Fun-ASR Realtime 是阿里的流式語音識別模型:音訊經持久連線流式送入,文本以低延遲流式返回,且流時長沒有上限。
- 官方文件將它定位於即時字幕、語音助手和會議轉寫,它繼承 Fun-ASR 家族的熱詞定製優勢和多語言覆蓋,包括中文地方方言、英語、日語和韓語。
- Synthorai 讓它可以透過與其餘音訊目錄相同的 OpenAI 相容介面呼叫。
規格與限制
| 模態 | audio → text |
| 特性 | realtime · streaming |
| 音訊限制 | Real-time WebSocket streaming, unlimited duration; RAG-based large-scale hotwords; millisecond timestamps; VAD turn detection |
| 備註 | Docs also describe 7-state emotion recognition on the realtime guide. |
常見問題
Fun-ASR Realtime API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。足以在新增付款方式之前,用真實工作負載試試 Fun-ASR Realtime。
Fun-ASR Realtime 最擅長什麼?
流式轉寫,時長無上限,以及為即時字幕與會議打造和熱詞定製,多語言覆蓋。完整能力請見 About 一節,內容取自廠商官方發布說明。
Fun-ASR Realtime 的價格是多少?
在 Synthorai 上,Fun-ASR Realtime 依轉錄音訊每分鐘 $0.002 計費,按用量計費,無平台加價,無需訂閱。
Fun-ASR Realtime 支援哪些語言?
在 Synthorai 上透過 POST /v1/audio/transcriptions 呼叫 Fun-ASR Realtime,即標準 OpenAI 轉錄 API 形式。 官方語言清單 →
如何開通 Fun-ASR Realtime?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "fun-asr-realtime" 即可。一組 API key 通用閘道上的所有模型。