Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

Playlist order by

$
0
0

Hello,

Please share your code but basically, the following should work:

$client = new KalturaClient($config);
$filter = new KalturaMediaEntryFilter();
$filter->orderBy = '-plays';
$pager = null;
$result = $client->baseEntry->listAction($filter, $pager);

You can also do "+plays" to reverse the order, i.e asc or desc.


Viewing all articles
Browse latest Browse all 7410

Trending Articles