jormin / laravel-baidu-speech
百度语音Api集成
v1.0.3
2019-03-07 02:05 UTC
Requires
- php: ~5.6|~7.0
- illuminate/support: ~5.1
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-11-07 16:26:51 UTC
README
集成了 百度AI 官方的Api接口。
安装
-
安装包文件
$ composer require jormin/laravel-baidu-speech
配置
-
注册 ServiceProvider:
Jormin\BaiduSpeech\BaiduSpeechServiceProvider::class,
-
创建配置文件:
php artisan vendor:publish
执行命令后会在
config
目录下生成本扩展配置文件:laravel-baidu-speech.php
。 -
在
.env
文件中增加如下配置:-
BAIDU_APP_ID
:百度AppId。 -
BAIDU_API_KEY
:百度ApiKey。 -
BAIDU_SECRET_KEY
:百度SecretKey。
-
使用
-
语音识别
Jormin\BaiduSpeech\BaiduSpeech::recognize($filePath, $url, $callback, $userID, $format, $rate, $lan);
接口字段:
接口返回字段详细见 百度官方文档.
-
语音合成
Jormin\BaiduSpeech\BaiduSpeech::combine($text, $userID, $lan, $speed, $pitch, $volume, $person, $filename);
接口字段:
接口返回字段详细见 百度官方文档.
License
The MIT License (MIT). Please see License File for more information.