cloudmersive / cloudmersive_video_api_client
1.0.4
2020-08-23 04:53 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-16 00:41:54 UTC
README
视频API可以帮助您转换、编码和转码视频。
Cloudmersive Video and Media Services API - 在文件格式之间转换和编码视频和媒体文件和内容。按需。
- API版本:v1
- 包版本:1.0.4
要求
PHP 5.5及以后版本
安装与使用
Composer
要使用Composer安装绑定,请将以下内容添加到composer.json
{
"repositories": [
{
"type": "git",
"url": "https://github.com/cloudmersive/cloudmersive_video_api_client.git"
}
],
"require": {
"cloudmersive/cloudmersive_video_api_client": "*@dev"
}
}
然后运行composer install
手动安装
下载文件并包含autoload.php
require_once('/path/to/cloudmersive_video_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\AudioApi( // 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 ); $input_file = "/path/to/file.txt"; // \SplFileObject | Input file to perform the operation on. $file_url = "file_url_example"; // string | Optional; URL of an audio file being used for conversion. Use this option for files larger than 2GB. $bit_rate = 56; // int | Optional; Specify the desired bitrate of the converted audio file in kilobytes per second (kB/s). Value may be between 48 and 1,411. By default, the optimal bitrate will be chosen automatically. try { $result = $apiInstance->audioConvertToAac($input_file, $file_url, $bit_rate); print_r($result); } catch (Exception $e) { echo 'Exception when calling AudioApi->audioConvertToAac: ', $e->getMessage(), PHP_EOL; } ?>
API端点文档
所有URI都是相对于https://api.cloudmersive.com
模型文档
- MediaInformation
- NsfwResult
- NsfwScannedFrame
- SplitVideoResult
- StillFrame
- StillFramesResult
- VideoFile
授权文档
Apikey
- 类型:API密钥
- API密钥参数名:Apikey
- 位置:HTTP头