I am using lambda function to transcode the video file I upload. Here is the code I am using in the lambda
function.
var params = {
PipelineId: pipelineId,
Input: {
Key: inputKey
},
Outputs: [{
Key: outputKey,
PresetId: transcoderPresetID,
}],
UserMetadata : {jid : 'test', vid: v001 }
}
but when I check the metadata on the s3 object that was written by elastic transcoder
, all I can see is "content-type": "video/mp4"
My log files are not showing any errors, am I missing something. Please let me know. Thank you