createMediaTranscodeJobs.php 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. require dirname(__FILE__) . '/../vendor/autoload.php';
  3. $secretId = "SECRETID"; //替换为用户的 secretId,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
  4. $secretKey = "SECRETKEY"; //替换为用户的 secretKey,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
  5. $region = "ap-beijing"; //替换为用户的 region,已创建桶归属的region可以在控制台查看,https://console.cloud.tencent.com/cos5/bucket
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'schema' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId ,
  12. 'secretKey' => $secretKey)));
  13. try {
  14. // start --------------- 使用模版 ----------------- //
  15. $result = $cosClient->createMediaTranscodeJobs(array(
  16. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  17. 'Tag' => 'Transcode',
  18. 'QueueId' => 'asdadadfafsdkjhfjghdfjg',
  19. 'CallBack' => 'https://example.com/callback',
  20. 'Input' => array(
  21. 'Object' => 'video01.mp4'
  22. ),
  23. 'Operation' => array(
  24. 'TemplateId' => 'asdfafiahfiushdfisdhfuis',
  25. 'Output' => array(
  26. 'Region' => $region,
  27. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  28. 'Object' => 'video02.webm',
  29. ),
  30. ),
  31. ));
  32. // 请求成功
  33. print_r($result);
  34. // end --------------- 使用模版 ----------------- //
  35. // start --------------- 自定义参数 ----------------- //
  36. $result = $cosClient->createMediaTranscodeJobs(array(
  37. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  38. 'Tag' => 'Transcode',
  39. 'QueueId' => 'asdadadfafsdkjhfjghdfjg',
  40. 'CallBack' => 'https://example.com/callback',
  41. 'Input' => array(
  42. 'Object' => 'video01.mp4'
  43. ),
  44. 'Operation' => array(
  45. 'Output' => array(
  46. 'Region' => $region,
  47. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  48. 'Object' => 'video01.mkv',
  49. ),
  50. 'Transcode' => array(
  51. 'Container' => array(
  52. 'Format' => 'mp4'
  53. ),
  54. 'Video' => array(
  55. 'Codec' => 'H.264',
  56. 'Profile' => 'high',
  57. 'Bitrate' => '1000',
  58. 'Preset' => 'medium',
  59. 'Width' => '1280',
  60. 'Fps' => '30',
  61. ),
  62. 'Audio' => array(
  63. 'Codec' => 'aac',
  64. 'Samplerate' => '44100',
  65. 'Bitrate' => '128',
  66. 'Channels' => '4',
  67. ),
  68. 'TransConfig' => array(
  69. 'AdjDarMethod' => 'scale',
  70. 'IsCheckReso' => 'false',
  71. 'ResoAdjMethod' => '1',
  72. ),
  73. 'TimeInterval' => array(
  74. 'Start' => '0',
  75. 'Duration' => '60',
  76. ),
  77. ),
  78. ),
  79. ));
  80. // 请求成功
  81. print_r($result);
  82. // end --------------- 自定义参数 ----------------- //
  83. } catch (\Exception $e) {
  84. // 请求失败
  85. echo($e);
  86. }