jormin/laravel-baidu-speech

v1.0.3 2019-03-07 02:05 UTC

This package is auto-updated.

Last update: 2024-11-07 16:26:51 UTC


README

集成了 百度AI 官方的Api接口。

安装

  1. 安装包文件

    $ composer require jormin/laravel-baidu-speech

配置

  1. 注册 ServiceProvider:

    Jormin\BaiduSpeech\BaiduSpeechServiceProvider::class,
  2. 创建配置文件:

    php artisan vendor:publish

    执行命令后会在 config 目录下生成本扩展配置文件:laravel-baidu-speech.php

  3. .env 文件中增加如下配置:

    • BAIDU_APP_ID:百度AppId。

    • BAIDU_API_KEY:百度ApiKey。

    • BAIDU_SECRET_KEY:百度SecretKey。

使用

  1. 语音识别

       Jormin\BaiduSpeech\BaiduSpeech::recognize($filePath, $url, $callback, $userID, $format, $rate, $lan);

    接口字段:

    接口返回字段详细见 百度官方文档.

  2. 语音合成

       Jormin\BaiduSpeech\BaiduSpeech::combine($text, $userID, $lan, $speed, $pitch, $volume, $person, $filename);

    接口字段:

    接口返回字段详细见 百度官方文档.

License

The MIT License (MIT). Please see License File for more information.