cloudmersive / cloudmersive_voicerecognition_api_client
1.4.2
2020-05-23 23:14 UTC
Requires
- php: >=5.5
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ~1.12
- phpunit/phpunit: ^4.8
- squizlabs/php_codesniffer: ~2.6
This package is not auto-updated.
Last update: 2024-09-23 07:21:29 UTC
README
语音API使您能够使用先进的机器学习识别语音并将其转换为文本,还可以将文本转换为语音。
Cloudmersive Speech API 提供高级语音识别和文本到语音功能
- API版本:v1
- 包版本:1.4.2
要求
PHP 5.5 及以上版本
安装与使用
Composer
要通过 Composer 安装绑定,请将以下内容添加到 composer.json
{
"repositories": [
{
"type": "git",
"url": "https://github.com/cloudmersive/cloudmersive_voicerecognition_api_client.git"
}
],
"require": {
"cloudmersive/cloudmersive_voicerecognition_api_client": "*@dev"
}
}
然后运行 composer install
手动安装
下载文件并包含 autoload.php
require_once('/path/to/cloudmersive_voicerecognition_api_client/vendor/autoload.php');
测试
要运行单元测试
composer install
./vendor/bin/phpunit
入门
请遵循 安装过程,然后运行以下命令
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure API key authorization: Apikey $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY'); // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed // $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Apikey', 'Bearer'); $apiInstance = new Swagger\Client\Api\RecognizeApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config ); $speech_file = "/path/to/file.txt"; // \SplFileObject | Speech file to perform the operation on. Common file formats such as WAV, MP3 are supported. try { $result = $apiInstance->recognizeFile($speech_file); print_r($result); } catch (Exception $e) { echo 'Exception when calling RecognizeApi->recognizeFile: ', $e->getMessage(), PHP_EOL; } ?>
API端点文档
所有URI均相对于 https://api.cloudmersive.com
模型文档
授权文档
Apikey
- 类型:API密钥
- API密钥参数名:Apikey
- 位置:HTTP头