当前位置: 首页>>代码示例>>PHP>>正文


PHP KalturaServiceBase::getRemotePaths方法代码示例

本文整理汇总了PHP中KalturaServiceBase::getRemotePaths方法的典型用法代码示例。如果您正苦于以下问题:PHP KalturaServiceBase::getRemotePaths方法的具体用法?PHP KalturaServiceBase::getRemotePaths怎么用?PHP KalturaServiceBase::getRemotePaths使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在KalturaServiceBase的用法示例。


在下文中一共展示了KalturaServiceBase::getRemotePaths方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getAssetContentResource

 /**
  * @return KalturaContentResource content resource for the given asset in the target account
  * @param string $assetId
  * @param KalturaServiceBase $assetService
  * @param bool $remote
  */
 protected function getAssetContentResource($assetId, KalturaServiceBase $assetService, $remote)
 {
     $contentResource = null;
     if ($remote) {
         // get remote resource
         $contentResource = new KalturaRemoteStorageResources();
         $contentResource->resources = array();
         $remotePaths = $assetService->getRemotePaths($assetId);
         $remotePaths = $remotePaths->objects;
         foreach ($remotePaths as $remotePath) {
             /* @var $remotePath KalturaRemotePath */
             $res = new KalturaRemoteStorageResource();
             if (!isset($this->mapStorageProfileIds[$remotePath->storageProfileId])) {
                 throw new Exception('Cannot map storage profile ID [' . $remotePath->storageProfileId . ']');
             }
             $res->storageProfileId = $this->mapStorageProfileIds[$remotePath->storageProfileId];
             $res->url = $remotePath->uri;
             $contentResource->resources[] = $res;
         }
     } else {
         // get local resource
         $contentResource = new KalturaUrlResource();
         $contentResource->url = $this->getAssetUrl($assetId, $assetService);
     }
     return $contentResource;
 }
开发者ID:dozernz,项目名称:server,代码行数:32,代码来源:CrossKalturaDistributionEngine.php

示例2: getAssetContentResource

 /**
  * @return KalturaContentResource content resource for the given asset in the target account
  * @param string $assetId
  * @param KalturaServiceBase $assetService
  * @param bool $remote
  */
 protected function getAssetContentResource($assetId, KalturaServiceBase $assetService, $remote)
 {
     KalturaLog::debug('Getting content resource for asset id [' . $assetId . '] remote [' . $remote . ']');
     $contentResource = null;
     if ($remote) {
         // get remote resource
         $contentResource = new KalturaRemoteStorageResources();
         $contentResource->resources = array();
         $remotePaths = $assetService->getRemotePaths($assetId);
         $remotePaths = $remotePaths->objects;
         foreach ($remotePaths as $remotePath) {
             /* @var $remotePath KalturaRemotePath */
             $res = new KalturaRemoteStorageResource();
             if (!isset($this->mapStorageProfileIds[$remotePath->storageProfileId])) {
                 throw new Exception('Cannot map storage profile ID [' . $remotePath->storageProfileId . ']');
             }
             $res->storageProfileId = $this->mapStorageProfileIds[$remotePath->storageProfileId];
             $res->url = $remotePath->uri;
             $contentResource->resources[] = $res;
         }
     } else {
         // get local resource
         $contentResource = new KalturaUrlResource();
         $options = new KalturaFlavorAssetUrlOptions();
         $options->fileName = $assetId;
         $contentResource->url = $assetService->getUrl($assetId, null, false, $options);
     }
     return $contentResource;
 }
开发者ID:kubrickfr,项目名称:server,代码行数:35,代码来源:CrossKalturaDistributionEngine.php


注:本文中的KalturaServiceBase::getRemotePaths方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。