创建转录
POST
/v1/audio/transcriptions请求参数
Header 参数
Content-Type
string
必需
示例值:
multipart/form-data
Accept
string
必需
示例值:
application/json
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数multipart/form-data
file
file
必需
要转录的音频文件,采用以下格式之一:mp3、mp4、mpeg、mpga、m4a、wav 或 webm。
model
string
必需
要使用的模型的 ID。仅whisper-1
当前可用。
示例值:
whisper-1
response_format
string
可选
成绩单输出的格式,采用以下选项之一:json、text、srt、verbose_json 或 vtt。
示例值:
json
temperature
number
可选
采样温度,介于 0 和 1 之间。较高的值(如 0.8)将使输出更加随机,而较低的值(如 0.2)将使输出更加集中和确定。如果设置为 0,模型将使用对数概率自动升高温度,直到达到特定阈值。
示例值:
0
language
string
可选
输入音频的语言。以ISO-639-1格式提供输入语言将提高准确性和延迟。
示例代码
返回响应
OK(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
text
string
必需
示例OK
{
"text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger. This is a place where you can get to do that."
}
最后修改时间: 4 个月前