Video.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace app\common\library;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Vod\Vod;
  5. use AlibabaCloud\Client\Exception\ClientException;
  6. use AlibabaCloud\Client\Exception\ServerException;
  7. class Video
  8. {
  9. protected $accessKeyId = '';
  10. protected $accessKeySecret = '';
  11. public function __construct(){
  12. define("VOD_CLIENT_NAME", 'AliyunVodClientDemo');
  13. $this->accessKeyId = 'LTAI5t5kfj2Efg6YA7awDUoP';
  14. $this->accessKeySecret = 't5HZA7628nQv9tGv0y50AOoMfgMYkl';
  15. $this->initVodClient();
  16. }
  17. //初始化
  18. public function initVodClient() {
  19. $regionId = 'cn-beijing';
  20. //填入AccessKey信息
  21. AlibabaCloud::accessKeyClient($this->accessKeyId, $this->accessKeySecret)
  22. ->regionId($regionId)
  23. ->connectTimeout(1)
  24. ->timeout(3)
  25. ->name(VOD_CLIENT_NAME);
  26. }
  27. //GetPlayInfo
  28. public function getPlayInfo($videoId) {
  29. return Vod::v20170321()->getPlayInfo()->client(VOD_CLIENT_NAME)
  30. ->withVideoId($videoId) // 指定接口参数
  31. ->withAuthTimeout(3600*24)
  32. ->format('JSON') // 指定返回格式
  33. ->request(); // 执行请求
  34. }
  35. /**
  36. * @throws ClientException
  37. * @throws ServerException
  38. */
  39. public function getVideoPlayAuth($videoId) {
  40. return Vod::v20170321()->getVideoPlayAuth()->client(VOD_CLIENT_NAME)
  41. ->withVideoId($videoId) // 指定音/视频ID
  42. ->withAuthInfoTimeout(3600)
  43. ->format('JSON') // 指定返回格式
  44. ->request(); // 执行请求
  45. }
  46. }