We have a custom PHP application that is currently using the Kaltura Simple Uploader (KSU) but we’ve been asked to convert it in order to get away from using Flash.
I’ve been following the documentation that I’ve found on https://developer.kaltura.com/workflows/Ingest_and_Upload_Media and am using the jQuery File Upload widget so that we can do the chunked and pause/play easily. I’ve got the file uploading but then it prints out to the console “Next, call the media.add and media.addContent API actions to create your Kaltura Media Entry and associate it with this newly uploaded file. Once media.addContent is called, the transcoding process will begin and your media entry will be prepared for playback and sharing. Use the Kaltura JS client library or call your backend service to execute media.add and media.addContent passing the uploadTokenId.”
I’ve tried multiple ways to execute the media.add and media.addContent but I’m hitting a dead end with no errors being returned and nothing extra printing in the console.
Wondering if anyone has successfully integrated this in their application and if so if there are any good examples out there that would help me.
Thanks!