W-Speech(ASR)

调用WZH团队提供的免费AI语音识别(transcribe)

喜欢此接口?为了能运营下去请赞助我们!

POST https://aispeech.api.ecylt.top

Query Parameters

Authorization: Bearer 114514 验证:在Header处添加 Bearer 114514

Body类型:application/json

Name
Type
Description

audio_m*

String

The format of the audio input. Can be either base64 (base64 encoded string) or wav_url (URL of a .wav file)

audio*

String

The audio data, either a base64 encoded string (if audio_m is base64) or a URL to a .wav file (if audio_m is wav_url)

language

String

The language of the audio. Default is en

vad_filter

String

Whether to use voice activity detection (VAD) filtering. Default is false

JSON:

{
  "transcription_info": {
    "duration": 10.5,
    "sample_rate": 16000,
    "num_words": 25
  },
  "text": "This is a sample transcription of the audio input.",
  "word_count": 7
}

最后更新于