From 4e752ff1fe220158952667decef1260a38f0455e Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 13 Oct 2023 18:47:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/IndexController.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app/controller/IndexController.php b/app/controller/IndexController.php index 56486f1..87bfc20 100644 --- a/app/controller/IndexController.php +++ b/app/controller/IndexController.php @@ -2,12 +2,26 @@ namespace app\controller; +use app\extend\IFlytek\Xfyun\Speech\TtsClient; use support\Request; use Webman\Container; use Webman\Push\Api; class IndexController { + private $app_id = '2eda6c2e'; + + private $api_key = '12ec1f9d113932575fc4b114a2f60ffd'; + + private $api_secret = 'MDEyMzE5YTc5YmQ5NjMwOTU1MWY4N2Y2'; + + + private $ttsConfig = [ + 'aue' => 'lame', + 'sfl' => 1, + 'vcn' => 'x4_lingxiaoyao_en' + ]; + public function index(Request $request) { return json(['code' => 0, 'msg' => 'ok']); @@ -39,4 +53,17 @@ class IndexController ]); return json(['code' => 0, 'msg' => 'ok']); } + + public function tts(Request $request){ + $text = $request->post('data'); + if($text!=''){ + $name = time() . rand(1, 100000) . '.mp3'; + $tts = new TtsClient($this->app_id, $this->api_key, $this->api_secret, $this->ttsConfig); + file_put_contents(public_path('tts') . '/' . $name, $tts->request($text)->getBody()->getContents()); + return json(['code' => 0, 'msg' => 'ok','data'=>['mp3'=>'https://chat.lihaink.cn/tts/' . $name]]); + } + return json(['code' => 0, 'msg' => 'ok']); + + } + }