1

我正在使用 Chrome 在 Chrome 中录制短音频文件(几秒钟)mediaDevices.getUserMedia(),将文件保存到 Firebase Storage,然后尝试将文件发送到 IBM Watson Speech-to-Text。我收到此错误消息:

unable to transcode data stream audio/webm -> audio/x-float-array

在浏览器中,我设置了麦克风:

navigator.mediaDevices.getUserMedia({ audio: true, video: false })
.then(stream => {

var options = {
   audioBitsPerSecond : 128000,
   mimeType : 'audio/webm'
};

const mediaRecorder = new MediaRecorder(stream, options);
mediaRecorder.start();
...

根据this answer Chrome只支持两种媒体类型

audio/webm
audio/webm;codecs=opus

我都试过了。

这是我发送给 IBM Watson 的内容:

curl -X POST -u "apikey:my-api-key" \
--header "Content-Type: audio/webm" \
--data-binary "https://firebasestorage.googleapis.com/v0/b/my-app.appspot.com/my-file" \
--url "https://api.us-south.speech-to-text.watson.cloud.ibm.com/instances/01010101/v1/recognize"

支持的 MIME 类型列表包括webmwebm;codecs=opus

我尝试录制并发送ogg格式文件,并收到相同的错误消息:

curl -X POST -u "apikey:my-api-key" \
--header "Content-Type: audio/ogg" \
--data-binary @/Users/TDK/LanguageTwo/public/1.ogg \
--url "https://api.us-south.speech-to-text.watson.cloud.ibm.com/instances/01010101/v1/recognize"

我尝试了 IBM 的示例音频文件,它运行良好:

"transcript": "several tornadoes touched down as a line of severe thunderstorms swept through Colorado on Sunday "

我从 Google Cloud Speech-to-Text收到了类似的错误消息。

4

1 回答 1

0

创建一个名为watsonstt.sh(我建议保存在 中~/bin/)的 bash 脚本,粘贴下面的内容,用您自己的内容替换apikeyurlsavepath变量内容,然后按照评论的建议调用脚本,包括单个参数的引号(以处理空格)。

在撰写本文时,IBM Watson 云 Web 界面的“管理”选项卡中提供了 API 凭证,您需要使用信用卡/借记卡详细信息进行注册。


#!/bin/bash

# call this script with one argument for posix file path parameter in quotes e.g.: 
# watsonstt.sh "/user/name/file.mp3"

# 500 mins per month for free
# https://www.ibm.com/watson/developercloud/speech-to-text/api/v1/curl.html?curl#get-token

apikey=XXXXXXXXXXXX
url=YYYYYYYYYY
savepath=~/Desktop/${1##*/}.txt

curl -X POST -u "apikey:$apikey" --header "Content-Type: audio/${1##*.}" --data-binary @"$1" "$url/v1/recognize?timestamps=true&max_alternatives=3" -o "${savepath}"
于 2022-02-22T15:44:44.970 回答