12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- require dirname(__FILE__, 2) . '/vendor/autoload.php';
- $secretId = "SECRETID";
- $secretKey = "SECRETKEY";
- $region = "ap-beijing";
- $cosClient = new Qcloud\Cos\Client(
- array(
- 'region' => $region,
- 'scheme' => 'https',
- 'credentials'=> array(
- 'secretId' => $secretId,
- 'secretKey' => $secretKey)));
- try {
-
- $result = $cosClient->createMediaTranscodeProTemplate(array(
- 'Bucket' => 'examplebucket-125000000',
- 'Tag' => 'TranscodePro',
- 'Name' => 'media-transcode-pro-name',
- 'Container' => array(
- 'Format' => 'mxf',
- ),
- 'Video' => array(
- 'Codec' => 'xavc',
- 'Profile' => 'XAVC-HD_intra_420_10bit_class50',
- 'Width' => '1440',
- 'Height' => '1080',
- 'Interlaced' => 'true',
- 'Fps' => '30000/1001',
- 'Bitrate' => '',
- 'Rotate' => '',
- ),
- 'TimeInterval' => array(
- 'Start' => '',
- 'Duration' => '',
- ),
- 'Audio' => array(
- 'Codec' => '',
- 'Remove' => '',
- ),
- 'TransConfig' => array(
- 'AdjDarMethod' => '',
- 'IsCheckReso' => '',
- 'ResoAdjMethod' => '',
- 'IsCheckVideoBitrate' => '',
- 'VideoBitrateAdjMethod' => '',
- 'IsCheckAudioBitrate' => '',
- 'AudioBitrateAdjMethod' => '',
- 'IsCheckVideoFps' => '',
- 'VideoFpsAdjMethod' => '',
- 'DeleteMetadata' => '',
- 'IsHdr2Sdr' => '',
- ),
- ));
-
- print_r($result);
- } catch (\Exception $e) {
-
- echo($e);
- }
|