Copyright © 2011 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
i have successfully integrate kaltura with joomla 1.5
1) in joomla template i cant create html code that display me the latest video uploaded in kaltura
2) may i put a search box that retrive the video from kartula and display the matching video
[the all above can be summarize as how can i retrieve the required content format from kaltura, right now i m able to show video and edit video from joomla only ]
I have attached a screen shot, i want the listing like that way, is it possible?
i mean that is another modules like search module,latest video module etc for joomla - [for eg virture mart provides]
----------------------------
& can anybody tell me from where can i add category for a new media entry. [by default it doesnt ask for any category]
Thanks oferc,
First of all thanks for replying but can u please describe me that how to integrate a look in my own way in joomla module.
When i place a component it shows me the video upload interface on the page only...
but for an example if i want a module to display categories what i posted then how can i implement it...
& till now i was using the API Documentation for it, but now its not opening in my PC
"http://www.kaltura.com/api_v3/testmeDoc/index.php"
is there any location to ready Object documentation ?
Well now i am aware with Kaltura API
but dont know how to create an object ?
for eg i am trying to create an object of 'KalturaCategoryListResponse' class..
How to achive??
right now i m using the following code [WITH THE HELP OF php client library]
$config = new KalturaConfiguration(KALTURA_PARTNER_ID);
$client = new KalturaClient($config);
$ks = $client->session->start(KALTURA_PARTNER_SERVICE_SECRET, $partnerUserID, KalturaSessionType::ADMIN);
$client->setKs($ks); // set the session in the client
$list = $client->media->listAction($filter,$pager);
THEN WHY I CANT ACCESS THE FOLLOWINGS...
$client->media->anonymousRankAction(...);
$client->category->listAction(....);
Hi Meral,
The features you request are not currently supported by the Joomla module, but you can implement them with the kaltura API.
The KalturaClient is under \administrator\components\com_kalturavideo\client
The API there is equivalent to the one in test page (in the screen shot you attached)
Ofer