Brightcove
Assistance+1 888 882 1880
Produits
Solutions
Ressources
Entreprise
Search IconA magnifying glass icon.
Contactez-Nous

Précédent

By Zencoder

at Brightcove

TAGS


Advanced watermarking

Tech Talk

Support for watermarking is one of the top requests we received from early Zencoder customers. Today we're announcing support for advanced watermarking capability. We have spent a lot of time scrutinizing just how to implement watermarking and we solicited feedback from our customers. We're really excited about where we ended up. We support:

  • GIF, JPEG, BMP, or PNG files
  • Index or alpha transparency
  • Positive and negative offsets
  • Percentage-based scaling and offsets
  • Multiple watermarks per video

![Earth Watermarked](https://img.brightcove.com/zencoder-blog/2010/08/earth_watermark.jpg) Basic Syntax The API for requesting watermarks is pretty straight-forward and is well-documented. For each output, you can specify the following: url, x, y, width, and height. For example:

"watermark": {
  "url": "s3://bucket/watermark_file.png",
  "x": "20",
  "y": "-10%"
  "width": "32",
  "height" : "24"
}

Scaling and Offsets Placing a watermark on a video properly is not an easy task. We've enabled percentage-based scaling and negative offsets to accomplish complex watermarking requirements. For example, the settings below will place the watermark 10 pixels from the bottom right corner at 1/8th the scale of the output video. On a video that is 640x360 the watermark would end up at 80x45 and placed at a positive "x" offset of 550 pixels and a positive "y" offset of 305 pixels.

"watermark": {
  "url": "s3://bucket/watermark_file.png",
  "x": -10,
  "y": -10,
  "width": "12.5%",
  "height": "12.5%"
}

Multiple watermarks Sometimes two or more watermarks need to be placed on a video. Maybe you need a logo in the bottom right corner and the bottom left corner. With Zencoder, it's simple. The "watermark" option just becomes "watermarks" and an array of options can be passed. For example:

"watermarks": [
  {
    "url": "s3://bucket/watermark_file.png",
    "x": 20
  }, {
    "url": "s3://bucket/watermark_file.png",
    "x": -20
  }
]

The default value for "x" and "y" is -10 pixels. So, this request will add two watermarks 10 pixels from the bottom of the video, one 20 pixels from the left edge and one 20 pixels from the right edge.


Retour en haut