uploadVideo.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * Created by Aliyun ApsaraVideo VoD.
  4. * User: https://www.aliyun.com/product/vod
  5. * API document: https://help.aliyun.com/document_detail/55407.html
  6. */
  7. require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'voduploadsdk' . DIRECTORY_SEPARATOR . 'Autoloader.php';
  8. date_default_timezone_set('PRC');
  9. // 测试上传本地视频
  10. function testUploadLocalVideo($accessKeyId, $accessKeySecret, $filePath)
  11. {
  12. try {
  13. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  14. $uploadVideoRequest = new UploadVideoRequest($filePath, 'testUploadLocalVideo via PHP-SDK');
  15. //$uploadVideoRequest->setCateId(1);
  16. //$uploadVideoRequest->setCoverURL("http://xxxx.jpg");
  17. //$uploadVideoRequest->setTags('test1,test2');
  18. //$uploadVideoRequest->setStorageLocation('outin-xx.oss-cn-beijing.aliyuncs.com');
  19. //$uploadVideoRequest->setTemplateGroupId('6ae347b0140181ad371d197ebe289326');
  20. $userData = array(
  21. "MessageCallback"=>array("CallbackURL"=>"https://demo.sample.com/ProcessMessageCallback"),
  22. "Extend"=>array("localId"=>"xxx", "test"=>"www")
  23. );
  24. $uploadVideoRequest->setUserData(json_encode($userData));
  25. $res = $uploader->uploadLocalVideo($uploadVideoRequest);
  26. print_r($res);
  27. } catch (Exception $e) {
  28. printf("testUploadLocalVideo Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
  29. $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
  30. }
  31. }
  32. // 测试上传网络视频
  33. function testUploadWebVideo($accessKeyId, $accessKeySecret, $fileURL)
  34. {
  35. try {
  36. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  37. $uploadVideoRequest = new UploadVideoRequest($fileURL, 'testUploadWebVideo via PHP-SDK');
  38. $res = $uploader->uploadWebVideo($uploadVideoRequest);
  39. print_r($res);
  40. } catch (Exception $e) {
  41. printf("testUploadWebVideo Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
  42. $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
  43. }
  44. }
  45. // 测试上传本地m3u8视频
  46. function testUploadLocalM3u8($accessKeyId, $accessKeySecret, $m3u8FilePath)
  47. {
  48. try {
  49. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  50. $uploadVideoRequest = new UploadVideoRequest($m3u8FilePath, 'testUploadLocalM3u8 via PHP-SDK');
  51. // 调用接口解析m3u8的分片地址列表,如果解析结果不准确,请自行拼接地址列表(默认分片文件和m3u8文件位于同一目录)
  52. $sliceFiles = $uploader->parseM3u8File($m3u8FilePath);
  53. //print_r($sliceFiles);
  54. $res = $uploader->uploadLocalM3u8($uploadVideoRequest, $sliceFiles);
  55. print_r($res);
  56. } catch (Exception $e) {
  57. printf("testUploadLocalM3u8 Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
  58. $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
  59. }
  60. }
  61. // 测试上传网络m3u8视频
  62. function testUploadWebM3u8($accessKeyId, $accessKeySecret, $m3u8FileUrl)
  63. {
  64. try {
  65. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  66. $uploadVideoRequest = new UploadVideoRequest($m3u8FileUrl, 'testUploadWebM3u8 via PHP-SDK');
  67. // 调用接口解析m3u8的分片地址列表,如果解析结果不准确,请自行拼接地址列表(默认分片文件和m3u8文件位于同一目录)
  68. $sliceFileUrls = $uploader->parseM3u8File($m3u8FileUrl);
  69. //print_r($sliceFileUrls);
  70. $res = $uploader->uploadWebM3u8($uploadVideoRequest, $sliceFileUrls);
  71. print_r($res);
  72. } catch (Exception $e) {
  73. printf("testUploadWebM3u8 Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
  74. $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
  75. }
  76. }
  77. #### 执行测试代码 ####
  78. $accessKeyId = '<AccessKeyId>';
  79. $accessKeySecret = '<AccessKeySecret>';
  80. //$localFilePath = 'C:\test\sample.mp4';
  81. $localFilePath = '/opt/video/sample.mp4';
  82. //testUploadLocalVideo($accessKeyId, $accessKeySecret, $localFilePath);
  83. $webFileURL = 'http://vod-test1.cn-shanghai.aliyuncs.com/b55b904bc612463b812990b7c8cc95c8/daa30814c0c340cf8199926f78aa5c0e-a0bc05ba62c3e95cc672e88b828148c9-ld.mp4?auth_key=1608774986-0-0-c56acd302bea0c331370d8ed686502fe';
  84. testUploadWebVideo($accessKeyId, $accessKeySecret, $webFileURL);
  85. $localM3u8FilePath = '/opt/video/m3u8/sample.m3u8';
  86. //testUploadLocalM3u8($accessKeyId, $accessKeySecret, $localM3u8FilePath);
  87. $webM3u8FileURL = 'http://vod-test1.cn-shanghai.aliyuncs.com/b55b904bc612463b812990b7c8cc95c8/daa30814c0c340cf8199926f78aa5c0e-195a25af366b5edae324c47e99a03f04-ld.m3u8?auth_key=1608775606-0-0-9fb038deaecd009dadd86721c5855629';
  88. //testUploadWebM3u8($accessKeyId, $accessKeySecret, $webM3u8FileURL);