- 我正在尝试在 Speech To Text 中添加 17 个 MP3 文件作为音频资源来构建自定义声学模型。
- 当我单独上传文件时,它们工作正常。
- 当添加为 ZIP 或 tar.gz 文件时,系统会声明它们无效。
- ZIP 和压缩包是在我的 Mac 上使用 ZIP 的系统工具和压缩包的存档实用程序创建的。
这是我传递的用于上传批量文件的 cURL 命令:
curl -X POST -u "username:password" \
--header "Contained-Content-Type: audio/mp3" \
--header "Content-Type: application/zip" \
--data-binary @audio.zip \
"https://stream.watsonplatform.net/speech-to-text/api/v1/acoustic_customizations/{customization ID removed}/audio/audio1
我正在使用相同的命令上传单个文件并且它工作正常,所以添加存档有些奇怪。完成这项工作后,我正准备添加近 20 小时的音频。