Skip to main content

Closed Captions

What Is Closed Captioning? Closed captions(CC) are a textual representation of the audio within a media file.

important

The Close Captions feature is disabled by default. Please contact Banuba representatives to know more about using this feature.

Over 80% of videos played on mobile devices don’t have sound turned on. This means many forms of content (e.g. skits, monologues, educational clips, etc.) will be skipped if there are no subtitles. But making captions by hand is tedious. AI-generated subtitles solve this issue, as they are created and placed automatically. The users can then edit the text as well as change its style and color.

Screenshot  Screenshot  Screenshot 

AWS Transcribe service is used to generate captions.

Supported languages

  • Arabic
  • English
  • Mandarin
  • Spanish
  • Portuguese

Integration

Create Bundle with Closed Captions configuration and pass extras to any Video Editor start method.

important

A Trial option for Close Captions

 val extras = bundleOf(
CaptionsApiService.ARG_CAPTIONS_UPLOAD_URL to "https://internal.transcribe.banuba.net",
CaptionsApiService.ARG_CAPTIONS_TRANSCRIBE_URL to "https://rest.internal.transcribe.banuba.net/transcribe/v1/status",
CaptionsApiService.ARG_API_KEY to "CheiYaaphoK6eungecheec4eingeik9shaijiech",
)
VideoCreationActivity.startFromCamera(
context = applicationContext,
pictureInPictureConfig = PipConfig(
video = pipVideo,
openPipSettings = editorSettingsProvider.openPipSettings
),
audioTrackData = initialTrackData,
extras = extras
)