Video Metadata from mediainfo
mediainfo
object. The property is populated after the loadstart
event is dispatched.mediainfo property
The mediainfo
property is an object which contains information (metadata) on the current video in the player.
After the mediainfo
object is populated you can use it for convenient data retrieval when wishing to display video information, like the video name or description. The object is also used in analytics collection.
Fields in mediainfo
The fields present in the mediainfo
property are as follows:
Field Name | Description | Data Type |
---|---|---|
accountId |
Brightcove account | string |
adKeys |
For future support | N/A |
createdAt |
Creation date and time | UTC (2011-09-28T20:06:37.879Z) |
cuePoints |
List of cue points as an array of objects | array of objects |
customFields |
Key-value pairs of custom field names and associated values | Object |
description |
Short description, 250 characters maximum | string |
duration |
Length of video in seconds | numeric |
economics |
Contains either AD_SUPPORTED or FREE. If the media is marked FREE, neither IMA3 nor FreeWheel ads will play. | string |
id |
Video ID | string |
link |
Object that contains link text and url properties | object |
longDescription |
Description, 5000 characters maximum | string |
name |
Video title | string |
poster |
URL to the poster image | string |
posterSources |
Array containing poster sources | array |
publishedAt |
Publication date and time | UTC (2011-09-28T20:06:37.879Z) |
rawSources |
Rendition information | array |
referenceId |
Video reference ID | string |
sources |
List of renditions as an array of objects; each object includes at least two elements: type and src | array of objects |
tags |
Tags (metadata) associated with the video | array of strings |
textTracks |
Array that holds text tracks for captions, cue points, etc. | array |
thumbnail |
URL to the thumbnail image | string |
thumbnailSources |
Data structure containing poster thumbnails | string |
variants |
An array of objects containing multilingual metadata for the videos; the object properties: language , name , description , long_description , and custom_fields |
Array |
Populate mediainfo
Using the on()
method you wait for the loadstart
event to be dispatched, then in the corresponding event handler you access the values stored in mediainfo
object. From the code below note the use of console.log
that displays the mediainfo
object (lines 111-113).
An example display from the console is shown here:

Display tags and custom fields
Both the tags and custom fields are stored in complex data structures. The customFields in an object and tags in an array. The following screenshot shows the custom fields and tags highlighted in the mediainfo
object.

To display the data from these complex data structures you need two kinds of loops. A for
loop is used to iterate over the tags array (lines 16-20) and inject the dynamically built HTML unordered list into a <div>
( defined in line 9). A for-in
loop is used to iterate over the custom fields object (lines 24-27) and inject the dynamically built HTML unordered list into the <div>
.
The rendered HTML appears as shown in this screenshot.
