createMediaConcatJobs.php 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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->createMediaConcatJobs(array(
  16. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  17. 'Tag' => 'Concat',
  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' => 'concat-video02.mp4',
  29. ),
  30. ),
  31. ));
  32. // 请求成功
  33. print_r($result);
  34. // end --------------- 使用模版 ----------------- //
  35. // start --------------- 自定义参数 ----------------- //
  36. $result = $cosClient->createMediaConcatJobs(array(
  37. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  38. 'Tag' => 'Concat',
  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' => 'concat-video03.mp4',
  49. ),
  50. 'ConcatTemplate' => array(
  51. 'ConcatFragments' => array(
  52. array(
  53. 'Url' => 'https://example.com/video01.mp4',
  54. 'Mode' => 'Start',
  55. // 'StartTime' => '0',
  56. // 'EndTime' => '7',
  57. ),
  58. array(
  59. 'Url' => 'https://example.com/video02.mp4',
  60. 'Mode' => 'Start',
  61. // 'StartTime' => '0',
  62. // 'EndTime' => '10',
  63. ),
  64. // ... repeated
  65. ),
  66. 'Index' => 1,
  67. 'Container' => array(
  68. 'Format' => 'mp4'
  69. ),
  70. 'Audio' => array(
  71. 'Codec' => 'mp3',
  72. 'Samplerate' => '',
  73. 'Bitrate' => '',
  74. 'Channels' => '',
  75. ),
  76. 'Video' => array(
  77. 'Codec' => 'H.264',
  78. 'Bitrate' => '1000',
  79. 'Width' => '1280',
  80. 'Height' => '',
  81. 'Fps' => '30',
  82. ),
  83. ),
  84. ),
  85. ));
  86. // 请求成功
  87. print_r($result);
  88. // end --------------- 自定义参数 ----------------- //
  89. } catch (\Exception $e) {
  90. // 请求失败
  91. echo($e);
  92. }