阅读本文,您可以获取 PHP SDK HEIF 编码监控的接口调用示例,实现快速开发。
说明
本文的调用示例包含接口的部分参数。由于参数间可能存在互斥关系,在调用时,请您参考注释,进行调整。
调用接口前,请先完成 PHP SDK 的安装及初始化操作。
本节为您介绍 HEIF 编码监控相关接口的功能和调用示例。
您可以调用 DescribeImageXHeifEncodeSuccessCountByTime 接口查询 HEIF 编码成功次数时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeSuccessCountByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeSuccessCountByTime($query, $body); print_r($response);
您可以调用 DescribeImageXHeifEncodeSuccessRateByTime 接口查询 HEIF 编码成功率时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeSuccessRateByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeSuccessRateByTime($query, $body); print_r($response);
您可以调用 DescribeImageXHeifEncodeFileOutSizeByTime 接口查询 HEIF 编码后文件大小时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeFileOutSizeByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeFileOutSizeByTime($query, $body); print_r($response);
您可以调用 DescribeImageXHeifEncodeErrorCodeByTime 接口查询 HEIF 编码错误码时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeErrorCodeByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeErrorCodeByTime($query, $body); print_r($response);
您可以调用 DescribeImageXHeifEncodeFileInSizeByTime 接口查询 HEIF 编码前文件大小时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeFileInSizeByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeFileInSizeByTime($query, $body); print_r($response);
您可以调用 DescribeImageXHeifEncodeDurationByTime 接口查询 HEIF 编码耗时时序数据。详细的参数说明可参见 DescribeImageXHeifEncodeDurationByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->describeImageXHeifEncodeDurationByTime($query, $body); print_r($response);