2017 © Pedro Peláez
 

library baidu-speech-recognition

封装百度语音识别api,for Laravel and Lumen applications

image

pinkong/baidu-speech-recognition

封装百度语音识别api,for Laravel and Lumen applications

  • Monday, April 16, 2018
  • by PINKONG
  • Repository
  • 2 Watchers
  • 3 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

baidu-speech-recognition


这个Laravel\Lumen扩展包使用百度云语音识别API,提供一个简单的方法从语音文件中提取文本。代码基于官方php sdk构建。, (*1)

使用前,请先前往百度AI开放平台,找到人工智能下的百度语音,创建应用。 百度的语言识别api是免费的,默认有50000/天的调用限制,需要的话可以申请提高配额到1000000/天。, (*2)

由于百度的api只接受特定码率的文件,所以代码中使用ffmepg进行了转码。 所以有个需要注意的地方: * 本地必须安装ffmepg * PHP必须有shell_exec执行权限, (*3)

Precondition

To use this package, you should go to , find 人工智能->百度语音 and create a applicaton,then get the AppID, API Key, and Secret Key。, (*4)

Installation

Require this package with composer by using the following command:, (*5)

$ composer require pinkong/baidu-speech-recognition

Then, add the service provider:, (*6)

If you are using Laravel, add the service provider to the providers array in config/app.php:, (*7)

[
    'providers' => [
        Pinkong\BaiduSpeechRecognition\BaiduSpeechServiceProvider::class,
    ],
]

as optional, you can use facade:, (*8)

    'aliases' => [
        'SpeechHelper' => Pinkong\BaiduSpeechRecognition\SpeechHelper::class,
    ],

If you are using Lumen, append the following code to bootstrap/app.php:, (*9)

$app->register(Pinkong\BaiduSpeechRecognition\BaiduSpeechServiceProvider::class);

## configuration

The defaults are set in config/baiduspeech.php. Copy this file to your own config directory to modify the values. You can publish the config using this command:, (*10)

php artisan vendor:publish --provider="Pinkong\BaiduSpeechRecognition\BaiduSpeechServiceProvider"

If you are using Lumen, append the following code to bootstrap/app.php:, (*11)

$app->configure('baiduspeech');

Usage

$result = SpeechHelper::convertMp3FileToPCM('test4.mp3');

License

The Laravel-Swoole-Http package is open-sourced software licensed under the MIT license., (*12)

The Versions

16/04 2018

dev-master

9999999-dev

封装百度语音识别api,for Laravel and Lumen applications

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

  • php >=5.4

by Avatar PINKONG

16/04 2018

1.0

1.0.0.0

封装百度语音识别api,for Laravel and Lumen applications

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

  • php >=5.4

by Avatar PINKONG