I transcode videos with a Lambda function.
Example with Node.js:
transcoder.createJob(params, function(err, data) {
if (err) {
...
} else {
...
}
});
Does the function hang until the video is encoded? Or is the job started then the Lambda function execution stops right away?
Thanks!