Qwen-Audio-3.1-ASR
NEWCopy success!
Overview
Qwen-Audio-3.1-ASR-Flash-Filetrans is an end-to-end offline speech recognition model designed for scenarios such as meeting transcription, content production, and call analysis. It supports multilingual and multi-regional Chinese dialect recognition. The model features high-precision transcription, hot word and context enhancement, speaker separation, punctuation prediction, and text normalization capabilities. It maintains stable performance even in complex noisy environments, making it the preferred choice for long audio transcription. This version also supports controllable ASR/AST output for multiple dialects.
Input
Audio
Output
Text
Features
Prefix Completion
Enable Partial Mode when calling the Qwen API to make the model continue strictly from your provided prefix text.View docsFunction Calling
Use function calling to connect large language models with external tools and systems.View docsCache
Context Cache stores shared prefixes for long-context requests to reduce repeated computation, improve latency, and lower cost.View docsStructured Outputs
Structured Outputs help ensure the model returns a JSON string in the expected format.View docsPricing
- Input$0.15Per 1M tokens
- Output$0.47Per 1M tokens
Rate Limits
- RPMRequests Per Minute600
API Reference
Call APICopy success!
123456789101112131415
curl --location 'https://maas.qwencloudapi.com/api/v1/services/audio/asr/transcription' \
--header "Authorization: Bearer $DASHSCOPE_API_KEY" \
--header "Content-Type: application/json" \
--header "X-DashScope-Async: enable" \
--data '{
"model": "qwen-audio-3.1-asr-flash-filetrans",
"input": {
"file_urls": [
"{YOUR_AUDIO_URL}"
]
},
"parameters": {
"channel_id": [0]
}
}'