PHPackages                             pinkong/baidu-speech-recognition - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. pinkong/baidu-speech-recognition

ActiveLibrary[API Development](/categories/api)

pinkong/baidu-speech-recognition
================================

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

1.0(8y ago)4481MITPHPPHP &gt;=5.4

Since Apr 16Pushed 8y ago2 watchersCompare

[ Source](https://github.com/PINKONG/baidu-speech-recognition)[ Packagist](https://packagist.org/packages/pinkong/baidu-speech-recognition)[ RSS](/packages/pinkong-baidu-speech-recognition/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (2)Used By (0)

baidu-speech-recognition
========================

[](#baidu-speech-recognition)

---

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

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

由于百度的api只接受特定码率的文件，所以代码中使用ffmepg进行了转码。 所以有个需要注意的地方：

- 本地必须安装ffmepg
- PHP必须有shell\_exec执行权限

Precondition
------------

[](#precondition)

To use this package, you should go to , find `人工智能`-&gt;`百度语音` and create a applicaton,then get the AppID, API Key, and Secret Key。

Installation
------------

[](#installation)

Require this package with composer by using the following command:

```
$ composer require pinkong/baidu-speech-recognition

```

Then, add the service provider:

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

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

as optional, you can use facade:

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

If you are using Lumen, append the following code to `bootstrap/app.php`:

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

configuration
-------------

[](#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:

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

If you are using Lumen, append the following code to `bootstrap/app.php`:

```
$app->configure('baiduspeech');
```

Usage
-----

[](#usage)

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

License
-------

[](#license)

The Laravel-Swoole-Http package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2948d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/342ac2ea697666a4c9e707d3019fb9f000dd291e7026fa525c9ec92bcec26705?d=identicon)[PINKONG](/maintainers/PINKONG)

### Embed Badge

![Health badge](/badges/pinkong-baidu-speech-recognition/health.svg)

```
[![Health](https://phpackages.com/badges/pinkong-baidu-speech-recognition/health.svg)](https://phpackages.com/packages/pinkong-baidu-speech-recognition)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
