Introduction
Brightcove Metadata Optimizer
The Brightcove AI Metadata Optimizer automatically generates video metadata using text tracks, audio, and visual analysis. This helps ensure your content is discoverable, consistent, and aligned with your publishing standards.
You can access the Metadata Optimizer through three main entry points in the Video Cloud UI:
- During video upload
- In the Video Details page
- Via bulk selection in the Media module
Setting up the Metadata Optimizer
Enabling the Advanced Optimizer
By default, the standard optimizer uses text tracks to suggest metadata. The Advanced Optimizer analyzes both audio and visuals to generate richer metadata.
To enable the Advanced Optimizer by default:
- In the Admin module, select Metadata Optimizer.
- Under General Settings, toggle Enable Advanced Metadata Optimizer (with visual analysis) on.
- Click Save.
Additional configurations on this page
Default Metadata Language
Under General Settings, use the Default Metadata Language dropdown to set the language used when metadata is generated. The default is English.
Generated Metadata
The Generated Metadata section defines which metadata fields the optimizer produces at upload or during bulk selection. Toggle each field on or off and set its Character Limits:
- Name
- Short Description
- Tags
- Long Description
Use the Review generated metadata before publishing the video checkbox to require approval before metadata is applied. When enabled, this becomes the default for all ingested videos and all bulk metadata optimizer calls.
Tag Rules
Under Rules & Optimization, click New to add custom Tag Rules. For each rule, define your tag and describe how it relates to your video content. Tag rules align generated metadata with your organization's taxonomy.
Reference Samples for Style Training
Provide up to ten Video IDs in the Reference Samples for Style Training section. The optimizer uses these high-quality examples to match formatting and tone in newly generated metadata.
Using the Metadata Optimizer
During Ingestion (Upload Module)
- Navigate to the Upload module and select Generate Metadata.
- (Optional) Select Review metadata before publishing if you want to approve suggestions first.
- Complete the upload. Metadata will be generated automatically.
If review is enabled:
- A yellow attention icon appears in your Media module (Status column) when metadata has been generated but requires review.
- View the video's detail page in the Media module, accept or request additional suggestions, then approve metadata for publication.
From the Video Details Page
- Navigate to the Media module and select a video.
- Ensure the video has text tracks. If not, you'll be prompted to generate auto captions or upload a text track.
- In the Overview tab, click Generate Metadata.
- Choose and edit metadata:
- Select your preferred option(s).
- Edit manually if needed.
- Click Save
Multi-Language Metadata
If multi-language metadata is enabled, you can set metadata in two ways:
Generate once, then translate
- Generate metadata in your main language.
- Save either for that single language or apply translations across all enabled languages.
Generate per language
- Change the Language View in Video Details.
- Click Generate Metadata and repeat the process for each language.
Bulk Metadata Generation
- In the Media module, select your videos.
- Open the More actions menu in the bulk action bar and click Generate Metadata.
- In the Review metadata dialog, click Generate and review to require approval before publishing, or Generate and skip review to publish automatically.
If review is enabled:
- A yellow attention icon appears in your Media module (Status column) when metadata has been generated but requires review.
- View each video's detail page in the Media module. Accept or request additional suggestions.
API Access
Create/Fetch/Delete AI metadata enhancement job
Endpoint (requires scope video-cloud/video/read):
POST | GET | DELETE https://ingest.api.brightcove.com/v1/accounts/{account_id}/videos/{video_id}/ai/metadata-enhancement/{language}
POST payload fields
fields_to_generate: optional list of strings. Supported:names,long_descriptions,short_descriptions,tags. If empty/omitted, all four are generated.skip_review: optional boolean. If true, the first generated suggestion is automatically saved, possibly overwriting previous values. Suggested tags are added to existing tags. With multi-language enabled, skipping review always writes to the primary language view.use_tag_architecture: optional boolean. If true, user-defined custom tag rules are enforced (see/v1/accounts/{account_id}/ai/metadata-enhancement/tags).references: optional list of video IDs to use as inspiration for style.character_limits: optional mapping fromnames|long_descriptions|short_descriptions|tagsto number (max length).translation_request: optional object (for multi-language customers) defining what to translate in non-primary language views.languages: list of strings (e.g.,["es-ES", "fr-FR"])name: stringshort_description: stringlong_description: string
translation_requestis provided, all other fields are ignored. Generating both the primary language metadata and the secondary language translations in the same request is not supported.
GET response fields
account_id: stringcreated_at: string (e.g.,2025-09-18)job_id: stringlanguage: stringstatus: string (processing|finished|failed)video_id: stringnames: list of strings (only when status isfinished)short_descriptions: list of strings (only when status isfinished)long_descriptions: list of strings (only when status isfinished)tags: list of one list of strings, e.g.,[["tag1", "tag2", …]](only when status isfinished)skip_review: boolean (echoes submitted value)
Get list of all AI metadata enhancement jobs
GET https://ingest.api.brightcove.com/v1/accounts/{account_id}/ai/metadata-enhancement/jobs
Scope: video-cloud/video/read
Response: list of job objects (same shape as the single-job GET)
Get/Update AI metadata enhancement tag rules
GET | PUT https://ingest.api.brightcove.com/v1/accounts/{account_id}/ai/metadata-enhancement/tags
Scopes, request, and response formats match the Autocaption Dictionary endpoint: /accounts/{account_id}/autocaption-dictionary
Request AI metadata enhancement at ingestion
In the ingestion API, new fields were added to the existing request:
POST /v1/accounts/{account_id}/videos/{video_id}/ingest-requests
{
"transcriptions": [
{
"autodetect": true,
"kind": "captions",
"metadata_optimizer": {
// All valid fields from POST /ai/metadata-enhancement/{language} except translation_request
"language": "en-US"
}
}
]
}
FAQs
- What are the limitations of this feature?
Standard optimizer uses text tracks only; The Advanced Optimizer also analyzes visuals. If a video lacks captions, you can auto-generate them (may require retranscoding). - Which languages are supported?
The Metadata Optimizer supports over 40 languages, including English (US, UK, AU, etc.), Spanish (Spain, US), French (FR, CA), German, Italian, Japanese, Korean, Chinese (Simplified & Traditional), and many more. - Can I prevent automatic publishing of metadata?
Yes. By enabling the review option, metadata will require approval before being applied. - Can I use the Universal Translator to generate text tracks for the Metadata Optimizer?
Yes. The Metadata Optimizer works with Brightcove Universal Translator, Brightcove Autocaptions, and third-party caption tools (standard formats). - Does it support third-party captions?
Yes, captions from outside Brightcove are supported. - Does clicking Regenerate to see more suggestions consume credits?
No. Credits are consumed only when you trigger metadata creation. Using Regenerate to fetch additional suggestions within the same session does not consume additional credits.