作者 何书鹏
1 个管道 的构建 通过 耗费 0 秒

语音转文字

@@ -365,7 +365,7 @@ class Almighty extends Api @@ -365,7 +365,7 @@ class Almighty extends Api
365 { 365 {
366 $filename = $this->request->param('filename'); 366 $filename = $this->request->param('filename');
367 empty($filename) && $this->error('请输入音频地址'); 367 empty($filename) && $this->error('请输入音频地址');
368 - $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION)); 368 + $suffix = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
369 if (!in_array($suffix, ['pcm', 'wav', 'amr', 'm4a', 'mp3'])) { 369 if (!in_array($suffix, ['pcm', 'wav', 'amr', 'm4a', 'mp3'])) {
370 $this->error('不支持该音频格式'); 370 $this->error('不支持该音频格式');
371 } 371 }