# cnBolt-Extensions-Brightcove A special file type that stores a reference to a Broightcove video and can copy connected meta properties of the video from brightcove to other configurable fields. This extension also imports the video thumbnail and provides a template for the default brightcove player. ## Configuration To use the extension, you have to configure the extension itself and create a proper contenttype for it. You can then use a twig filter to generate the player or just write your own. The *search-filter* will be applied to all lookup requests to brightcove. You can use this to limit your available videos to a certain selection. The two options arrays will be send to the respective brightcove player plugins. ** Sample ** ``` service: authapi: https://oauth.brightcove.com/v3/access_token?grant_type=client_credentials cmsapi: https://cms.api.brightcove.com/v1/accounts/{account}/ account: 1234567890 client: 1234567890 secret: 1234567890-1234567890-1234567890 search-filter: tags: can-be-used custom.category: SuperStuff options: social: [] ima3: [] ``` ### Contenttype To use the extension inside a contenttype, it has to be configured properly. Create a contenttype for your video objects and add a field of type **brightcove** to it. The **import** property of that field defines which data is copied to which field of your contenttype. it contains two maps of fields in this contenttype (left) to fields of brightcove videos (right). Check the brightcove documentation for all available fields. The fields under **text** are copied as strings. The fields under **images** are treated as image urls, downloaded and stored into your fields of type image. All changes are only applied when your page is saved, not before. Only the still is stored under files upon import, but not yet saved into your image field. ** Sample ** ``` video: name: Videos singular_name: Video fields: title: type: text label: Titel video: type: brightcove label: Brightcove Video import: text: title: name description: description category: custom_fields.category images: image: images.thumbnail.src category: type: text title: type: text description: type: textarea image: type: image ``` ### Templating A twig filter with name **brightcovePlayer** is provided. It takes an Brightcove id and generates a HTML5 player for it. You can of course also just ignore the filter and create your own player. ```
{{ record.brightcove|brightcovePlayer({some: options}) }}
```