當前位置: 首頁>>代碼示例>>PHP>>正文


PHP KalturaClient::startSession方法代碼示例

本文整理匯總了PHP中KalturaClient::startSession方法的典型用法代碼示例。如果您正苦於以下問題:PHP KalturaClient::startSession方法的具體用法?PHP KalturaClient::startSession怎麽用?PHP KalturaClient::startSession使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在KalturaClient的用法示例。


在下文中一共展示了KalturaClient::startSession方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getData

	function getData()
	{
		$params = $this->getParams();
		$conf = $this->getKalturaConfig();

		$user = new KalturaSessionUser();
		$user->userId = "1";

		$cl = new KalturaClient($conf);

		$res = $cl->startSession($user, $params->get('kaltura_admin_secret'), true);
		//$res =$cl->startAdmin($user, $conf->adminSecret , null);
		//$ks = $cl->getKs();
		$ks = $res['result']['ks'];
		echo $ks;
		// create a filter to define what exactly we want to be in the list

		$filter 		=& $this->getKalturaFilter();
		$page 			= $this->getKalturaPage();
		$page_size 	= 20; // choose the page_size to be some number that will fit the area you would like to display the thumbnails gallery

		$detailed = false;
		$res = $cl->listentries ( $user , $filter , $detailed , $page_size , $page);
		$count = @$res["result"]["count"];
		$entries = @$res["result"]["entries"];
		if (!$entries) $entries =array();
		return $entries;
	}
開發者ID:Jobar87,項目名稱:fabrik,代碼行數:28,代碼來源:kaltura.php

示例2: KalturaConfiguration

//$recorder_width = 400;
//$recorder_height = 300;
$backgroundColor = '#ccc';
// Partner configuration:
$kshowid = "-1";
//keep this -1
$host = "www.kaltura.com";
$cdnHost = "cdn.kaltura.com";
$autoPreview = true;
$config = new KalturaConfiguration($pid, $spid);
$config->serviceUrl = $host;
$client = new KalturaClient($config);
$user = new KalturaSessionUser();
$user->userId = $uid;
$user->screenName = $uname;
$result = $client->startSession($user, $secret, false, "edit:*");
$ks = @$result["result"]["ks"];
?>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>
<script type="text/javascript">
    if (swfobject.hasFlashPlayerVersion("9.0.0")) {
      var fn = function() {
        var att = { name:"krecorder",
                    data:"Krecord.swf", 
                    width:"<?php 
echo $recorder_width;
?>
", 
                    height:"<?php 
echo $recorder_height;
?>
開發者ID:abelardopardo,項目名稱:oval,代碼行數:31,代碼來源:webcam.php

示例3: getKalturaClient

 function getKalturaClient($isAdmin = false, $privileges = null)
 {
     // get the configuration to use the kaltura client
     $kalturaConfig = KalturaHelpers::getServiceConfiguration();
     if (!$privileges) {
         $privileges = 'edit:*';
     }
     // inititialize the kaltura client using the above configurations
     $kalturaClient = new KalturaClient($kalturaConfig);
     // get the current logged in user
     $sessionUser = KalturaHelpers::getSessionUser();
     if ($isAdmin) {
         $adminSecret = variable_get("kaltura_admin_secret", "");
         $result = $kalturaClient->startSession($sessionUser, $adminSecret, true, $privileges);
     } else {
         $secret = variable_get("kaltura_secret", "");
         $result = $kalturaClient->startSession($sessionUser, $secret, false, $privileges);
     }
     if (count(@$result["error"])) {
         watchdog("kaltura", $result["error"][0]["code"] . " - " . $result["error"][0]["desc"]);
         return null;
     } else {
         // now lets get the session key
         $session = $result["result"]["ks"];
         // set the session so we can use other service methods
         $kalturaClient->setKs($session);
     }
     return $kalturaClient;
 }
開發者ID:newrooky,項目名稱:TWB-Riverflip,代碼行數:29,代碼來源:kaltura_helpers.php


注:本文中的KalturaClient::startSession方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。