can be fetch required content form kaltura?

3 replies [Last post]
Joined: 02/17/2010
Points: 12
kartula-session.JPG

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]

Joined: 07/19/2009
Points: 83

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

Joined: 02/17/2010
Points: 12

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 ?

Joined: 02/17/2010
Points: 12

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(....);