I'm trying to add a watermark to all my videos being processed through Amazon elastic transcoder but I can't get it to working.
I created the preset with one watermark set(BottomRight) as in docs.
Here's my PHP source
$output = array(
'Key' => $folderNameOut,
'PresetId' => '139450346',
'ThumbnailPattern' => 'thumbs/filename-{count}',
'Watermarks' => array(
'InputKey' => 'watermark/watermark.png',
'PresetWatermarkId' => 'BottomRight'
));
I tried putting the watermark image in both thumbs and video buckets, even HTTP URL but doesn't work.
Can someone help me with this?