Two additional points to consider here:
- Like I said, KMC calls baseEntry->list(), not media->list(). If all your entries are media entries [videos, audio files, images] then that shouldn’t make a difference. If you have other type of entries associated with your partner, it might:)
- Unless specified otherwise by setting one of the below members of KalturaMediaEntryFilter:
-
statusEqual
-
statusIn
-
statusNotEqual
-
statusNotIn
the client.media.listAction() call will only return entries whose status is set to 2 [READY].
You may set the members above so that the list() action returns entries whose status is set to something other than 2 [READY].
For a list of status codes, see:
https://github.com/kaltura/KalturaGeneratedAPIClientsPHP53/blob/master/library/Kaltura/Client/Enum/EntryStatus.php#L39
-