Copyright © 2012 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
Hi
How to List Video Mix Entrys.
I have tried with:
$filter->mediaTypeEqual = KalturaMediaType::VIDEO;
Bud this lists all uploaded Videos, and i want to display only Video Mix entrys.
API V3.
THX
i changed the filter to:
$list = $client->baseEntry->listAction($filter, $pager);
When a user create a new mix with the KSE the type of Entry is Video Mix.
Now i want to list all entrys with the type Video Mix.
I tried also this 2 filters. In the API testconsole and with the php client.
Thats my code, can someone help please?
$filter->statusEqual = KalturaEntryStatus::READY;
//This list only Videos
$filter->mediaTypeEqual = KalturaMediaType::VIDEO;
//This Filters wont work
$filter->typeIn = "2";
//or
$filter->typeEqual ="MIX";
$pager = new KalturaFilterPager();
$pager->pageSize = 80;
$pager->pageIndex = 1;
$list = $client->media->listAction($filter,$pager);