Export & Deploy

Export MP4E videos and deploy them anywhere using the MP4E Player SDK.

Overview

Studio can export:

  • MP4E video: an MP4 with MP4E metadata embedded
  • Metadata JSON: the portable schema (great for review and automation)

Export Video (MP4E)

Use Export (or File → Export Video) to download the MP4E file.

If Export is blocked
Export requires that the video has metadata (run processing first).

Export Metadata JSON

Use File → Export Metadata JSON to download the complete current metadata state (including your local edits like layers, variables, sceneGroups, and settings).

Import Metadata JSON

Use File → Import Metadata JSON to replace the project metadata with a JSON file. Studio then reloads the project and applies the imported state.

JSON import is great for automation
Many teams generate overlays/rules programmatically (or via AI) and import them into Studio for final polish and preview.

Deploy with the Player SDK

Once you have an MP4E video file hosted somewhere accessible, embed it using @mp4e/react.

React embed (Player SDK)
1import { MP4EPlayer } from '@mp4e/react'
2import '@mp4e/react/styles.css'
3
4export function MyExperience() {
5 return <MP4EPlayer src="/videos/my-video.mp4" />
6}
Next steps