Using Kaltura VPaaS API, how to get READY status after uploading video?

189 views Asked by At

Once the video is uploaded, the media status is CONVERTING. on the KMC dashboard. after a while, the status would be READY, How can I check the status? I mean how to get the status is READY.

1

There are 1 answers

0
hunterp On

Check for it ;-)

Goto https://developer.kaltura.com/console/service/media/action/list

And add a filter: enter image description here

Scroll all the way to the bottom to find status: enter image description here

Finally...see the "Sample Code" Section, which auto-generates sample code for whatever options you choose in the api console.

In this case, for node.js, it is:

let filter = new kaltura.objects.MediaEntryFilter();
filter.statusEqual = kaltura.enums.EntryStatus.READY;
let pager = new kaltura.objects.FilterPager();

kaltura.services.media.listAction(filter, pager)
.execute(client)
.then(result => {
    console.log(result);
});