更新
This commit is contained in:
parent
4e3f84583f
commit
38bc3b9f96
27
app/Tts.php
27
app/Tts.php
@ -38,23 +38,27 @@ class Tts
|
|||||||
|
|
||||||
public function onMessage(TcpConnection $connection, $data)
|
public function onMessage(TcpConnection $connection, $data)
|
||||||
{
|
{
|
||||||
$data = json_decode($data, true);
|
|
||||||
|
|
||||||
// $tts_type=0;
|
$data = json_decode($data);
|
||||||
// if(isset($data['tts'])){
|
if (isset($data->data)) {
|
||||||
// $tts_type = $data['tts'];
|
$data = $data->data;
|
||||||
// }
|
|
||||||
if (isset($data['data'])) {
|
|
||||||
$data = $data['data'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($data == '') {
|
if ($data == '') {
|
||||||
return $connection->send(['header' => ['code' => 10003, 'message' => '消息不能为空']]);
|
return $connection->send(['header' => ['code' => 10003, 'message' => '消息不能为空']]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($data != '') {
|
if ($data != '') {
|
||||||
$url = $this->tts($data);
|
$arr=explode('。',$data);
|
||||||
$resp['mp3'] = $url;
|
foreach($arr as $k=>$v){
|
||||||
$response = json_encode($resp, true);
|
if(strlen($v)>1){
|
||||||
$connection->send($response);
|
$url = $this->tts($v);
|
||||||
|
$resp['mp3'] = $url;
|
||||||
|
$response = json_encode($resp, true);
|
||||||
|
$connection->send($response);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -65,6 +69,7 @@ class Tts
|
|||||||
|
|
||||||
function tts($text)
|
function tts($text)
|
||||||
{
|
{
|
||||||
|
|
||||||
$name = time() . rand(1, 100000) . '.mp3';
|
$name = time() . rand(1, 100000) . '.mp3';
|
||||||
$tts = new extend\IFlytek\Xfyun\Speech\TtsClient($this->app_id, $this->api_key, $this->api_secret, $this->ttsConfig);
|
$tts = new extend\IFlytek\Xfyun\Speech\TtsClient($this->app_id, $this->api_key, $this->api_secret, $this->ttsConfig);
|
||||||
file_put_contents(public_path('tts') . '/' . $name, $tts->request($text)->getBody()->getContents());
|
file_put_contents(public_path('tts') . '/' . $name, $tts->request($text)->getBody()->getContents());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user