VideoGen API
  1. VideoGen Schemas
VideoGen API
  • Text to Video
    • Prompt to video
    • Prompt to outline
    • Outline to video
    • Get file
  • Resources
    • Get voices
    • Get languages
    • Get fonts
  • Examples
    • Interacting with the Video Outline
    • Polling vs Webhooks
  • v1
    • Text to Video
      • Script to video
      • Prompt to script
      • Get file
    • Resources
      • Get voices
      • Get languages
      • Get fonts
    • Examples
      • Generate a Video
  • Schemas
    • VideoGen Schemas
      • Color
      • Voice
      • Language Code and Name
      • Font Summary
      • Voice Quality
      • Gender
      • Aspect Ratio
      • Section Overlay Type
      • Section
      • Outline
      • Caption Details
  1. VideoGen Schemas

Outline

{
    "sections": [
        {
            "text": "string",
            "voice": "Matilda",
            "voiceVolume": 1,
            "overlayType": "CAPTIONS",
            "title": "string",
            "subtitle": "string"
        }
    ],
    "useGetty": false,
    "useGenerativeImage": false,
    "imageGenStyle": "superhero comic book",
    "musicUrl": "string",
    "musicVolume": 0.15,
    "captionDetails": {
        "captionFontName": "string",
        "captionFontWeight": 0,
        "captionFontSize": 0,
        "captionTextColor": {
            "red": 0,
            "green": 0,
            "blue": 0
        },
        "captionTextJustification": "LEFT",
        "captionVerticalAlignment": "TOP",
        "captionStrokeColor": {
            "red": 0,
            "green": 0,
            "blue": 0
        },
        "captionStrokeWeight": 0,
        "captionBackgroundStyleType": "RECT",
        "captionBackgroundColor": {
            "red": 0,
            "green": 0,
            "blue": 0
        },
        "captionBackgroundBorderRadius": 0,
        "captionBackgroundOpacity": 0,
        "captionIsHidden": true
    }
}