123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- namespace app\common\library;
- require_once EXTEND_PATH . 'voduploadsdk' . DIRECTORY_SEPARATOR . 'Autoloader.php';
- class Uploadvideo{
- public function __construct(){
- date_default_timezone_set('PRC');
- $this->accessKeyId = 'LTAI5tQtgaZ2fDb7Ascp96Wj';
- $this->accessKeySecret = 'qAvIB98inVltwiCHf8LPi38BWyQ1bV';
- }
- public function test1(){
- $localFilePath = 'E:\test.mp4';
- //$localFilePath = '/opt/video/sample.mp4';
- $this->testUploadLocalVideo($localFilePath);
- }
- public function test2(){
- $webFileURL = 'http://vod-test1.cn-shanghai.aliyuncs.com/b55b904bc612463b812990b7c8cc95c8/daa30814c0c340cf8199926f78aa5c0e-a0bc05ba62c3e95cc672e88b828148c9-ld.mp4?auth_key=1608774986-0-0-c56acd302bea0c331370d8ed686502fe';
- $this->testUploadWebVideo($webFileURL);
- }
- public function test3(){
- $localM3u8FilePath = '/opt/video/m3u8/sample.m3u8';
- $this->testUploadLocalM3u8($localM3u8FilePath);
- }
- public function test4(){
- $webM3u8FileURL = 'http://vod-test1.cn-shanghai.aliyuncs.com/b55b904bc612463b812990b7c8cc95c8/daa30814c0c340cf8199926f78aa5c0e-195a25af366b5edae324c47e99a03f04-ld.m3u8?auth_key=1608775606-0-0-9fb038deaecd009dadd86721c5855629';
- $this->testUploadWebM3u8($webM3u8FileURL);
- }
- // 测试上传本地视频
- public function testUploadLocalVideo($filePath)
- {
- try {
- $uploader = new \AliyunVodUploader($this->accessKeyId, $this->accessKeySecret);
- $uploadVideoRequest = new \UploadVideoRequest($filePath, 'testUploadLocalVideo via PHP-SDK');
- //$uploadVideoRequest->setCateId(1);
- //$uploadVideoRequest->setCoverURL("http://xxxx.jpg");
- //$uploadVideoRequest->setTags('test1,test2');
- //$uploadVideoRequest->setStorageLocation('outin-xx.oss-cn-beijing.aliyuncs.com');
- //$uploadVideoRequest->setTemplateGroupId('6ae347b0140181ad371d197ebe289326');
- $userData = array(
- "MessageCallback"=>array("CallbackURL"=>"https://demo.sample.com/ProcessMessageCallback"),
- "Extend"=>array("localId"=>"xxx", "test"=>"www")
- );
- $uploadVideoRequest->setUserData(json_encode($userData));
- $res = $uploader->uploadLocalVideo($uploadVideoRequest);
- print_r($res);
- } catch (Exception $e) {
- printf("testUploadLocalVideo Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
- $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
- }
- }
- // 测试上传网络视频
- public function testUploadWebVideo($fileURL,$title = '')
- {
- try {
- $uploader = new \AliyunVodUploader($this->accessKeyId, $this->accessKeySecret);
- $uploadVideoRequest = new \UploadVideoRequest($fileURL, $title);
- $res = $uploader->uploadWebVideo($uploadVideoRequest);
- return $res;
- } catch (Exception $e) {
- printf("testUploadWebVideo Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
- $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
- }
- }
- // 测试上传本地m3u8视频
- public function testUploadLocalM3u8($m3u8FilePath)
- {
- try {
- $uploader = new \AliyunVodUploader($this->accessKeyId, $this->accessKeySecret);
- $uploadVideoRequest = new \UploadVideoRequest($m3u8FilePath, 'testUploadLocalM3u8 via PHP-SDK');
- // 调用接口解析m3u8的分片地址列表,如果解析结果不准确,请自行拼接地址列表(默认分片文件和m3u8文件位于同一目录)
- $sliceFiles = $uploader->parseM3u8File($m3u8FilePath);
- //print_r($sliceFiles);
- $res = $uploader->uploadLocalM3u8($uploadVideoRequest, $sliceFiles);
- print_r($res);
- } catch (Exception $e) {
- printf("testUploadLocalM3u8 Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
- $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
- }
- }
- // 测试上传网络m3u8视频
- public function testUploadWebM3u8($m3u8FileUrl)
- {
- try {
- $uploader = new \AliyunVodUploader($this->accessKeyId, $this->accessKeySecret);
- $uploadVideoRequest = new \UploadVideoRequest($m3u8FileUrl, 'testUploadWebM3u8 via PHP-SDK');
- // 调用接口解析m3u8的分片地址列表,如果解析结果不准确,请自行拼接地址列表(默认分片文件和m3u8文件位于同一目录)
- $sliceFileUrls = $uploader->parseM3u8File($m3u8FileUrl);
- //print_r($sliceFileUrls);
- $res = $uploader->uploadWebM3u8($uploadVideoRequest, $sliceFileUrls);
- print_r($res);
- } catch (Exception $e) {
- printf("testUploadWebM3u8 Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
- $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
- }
- }
- }
|