16 Rich Card VFX Templates Guide

Cuevo AI has developed proprietary script-driven rich card templates. Simply specify the card type in your script, and the renderer automatically overlays high-quality typographic and data visualization layers onto the video.

💡 Interactive Arena Guide

Below is a simulated view of Cuevo's backend rendering viewport. You can click on the grid list to toggle between card templates, instantly previewing their output effects, key parameters, and Prompt tips.

Select Card to Preview
CUEVO Backend Video Rendering Viewport (Simulation)
L
TEXT_CARD

Text Card

  • Smooth transition blends for avatar body poses
  • Cloned voices with real-time style envelope controls
  • Enterprise SOC 2 Type II compliance safeguards

16 VFX Rich Card Encyclopedia

Descriptions, parameter rules, and recommendations for each card type:

Text Card

TEXT TEMPLATE

Used to display high-level conceptual frameworks, hierarchical bullet points, paragraph summaries, or explanatory labels.

💡 Best Use Cases:The most versatile base card. Cleanly segments core definitions, widely used in academic, tech, and business introduction slides.
✍️ Recommendations:In script mode, the system defaults to this template for voiceovers. You can replace it anytime in the Shot Editor.
CUEVO Backend Video Rendering Viewport (Simulation)
L
TEXT_CARD

Text Card

  • Smooth transition blends for avatar body poses
  • Cloned voices with real-time style envelope controls
  • Enterprise SOC 2 Type II compliance safeguards
📋 Core Field Parameters (Payload):
FieldTypeDescription
titlestringMain title, recommended length ≤ 14 characters
subtitlestringOptional, subtitle, recommended length ≤ 18 characters
pointsstring[]Optional, multi-line list entries

Data Callout Card

METRIC TEMPLATE

Highlights percentages, ratios, or metrics in an extra-large font, accompanied by small descriptions.

💡 Best Use Cases:Common in business analysis and scientific papers, leveraging massive sizing contrasts to lock user focus.
✍️ Recommendations:When typing large values, include units (%, K, W, B, etc.) so the rendering engine calculates layout weights properly.
CUEVO Backend Video Rendering Viewport (Simulation)
Key Metric
98.6%
Render Sync Rate

Verified via LTX and VAD alignment algorithms

📋 Core Field Parameters (Payload):
FieldTypeDescription
dataValuestringLarge numerical highlight, e.g., '98.6%' or '350K+'
dataLabelstringMetric description label, recommended ≤ 12 characters
dataNotestringOptional, bottom footnote annotation for context or source

Chart Card

VISUAL CHART

Plots high-definition line graphs, bar charts, or pie charts to visualize structured 2D datasets on screen.

💡 Best Use Cases:Ideal for economic trends, comparisons, or metric changes over time.
✍️ Recommendations:To adjust numbers, input a valid JSON string in the chart_series input box inside the Shot Editor.
CUEVO Backend Video Rendering Viewport (Simulation)
L
CHART_CARD

Chart Card

New Subscriptions+14,200
May 01May 15May 30
📋 Core Field Parameters (Payload):
FieldTypeDescription
titlestringText title of the chart
chartSeriesJSON stringJSON coordinates array, e.g., [{name:'Series A', data:[[1,10],[2,20]]}]

Equation Card

FORMULA PREVIEW

Leverages LaTeX typesetting to show elegant mathematical equations or physical derivations.

💡 Best Use Cases:Highly recommended for scientific explainers or ML algorithms, avoiding blurry image snapshots.
✍️ Recommendations:Write the raw LaTeX symbols directly without surrounding $$ signs; the engine handles fonts automatically.
CUEVO Backend Video Rendering Viewport (Simulation)
L
ENERGY_EQUATION

Voice Activity Detection Energy Equation

E(t) =
tt-W
|S(τ)|2h(t - τ) dτ

Calculates RMS dB shifts using sliding window integration

📋 Core Field Parameters (Payload):
FieldTypeDescription
eqTitlestringFormula title, e.g., 'Gaussian Normal Distribution'
eqLinesstring[]LaTeX string array, one formula per line

Comparison Card

A/B MATRIX

Uses a split layout to contrast two solutions, technical architectures, or treatment/control groups.

💡 Best Use Cases:Perfect for competitive product analysis, historical changes, or timeline metrics.
✍️ Recommendations:Keep the line counts of left and right items symmetrical to maintain a balanced layout in the video.
CUEVO Backend Video Rendering Viewport (Simulation)
L
COMPARISON_CARD

Comparison Card

CUEVO Pipeline
+98%
Automated Smart Generation
Traditional Pipeline
12%
Manual High-cost Tuning
📋 Core Field Parameters (Payload):
FieldTypeDescription
leftTitlestringLeft column header
leftItemsstring[]Left column features list
rightTitlestringRight column header
rightItemsstring[]Right column features list

Ranking List

ORDER MATRIX

Numbered multi-line list displaying sequence steps, summaries, or charts.

💡 Best Use Cases:Useful for tutorials with chronological steps or top listings. Numbers support highlighters.
✍️ Recommendations:Refuel rows in the editor to easily change rankings.
CUEVO Backend Video Rendering Viewport (Simulation)
L
◆ ORDER MATRIXUnit: Million frames/s

Ranking List

1GPU Parallel Render Pipe
98.6M
2ASR Segment Alignment
82.1M
3LTX Lip Sync Engine
64.5M
📋 Core Field Parameters (Payload):
FieldTypeDescription
rankingItemsJSONChronological array of steps, recommended ≤ 5 lines

Quote Card

RESEARCH QUOTE

Wraps quotes in classical double quotation marks, emphasizing statements or report segments.

💡 Best Use Cases:Accentuates quotes, famous expressions, or research citations with an elegant, intellectual style.
✍️ Recommendations:Keep quotes short and punchy. Short sentences translate better to strong visual focus in videos.
CUEVO Backend Video Rendering Viewport (Simulation)
L
QUOTE_CARD

Quote Card

The ultimate aim of technology is to simplify complexity, turning truth into visual inspiration.
— Yannick Cuevo
📋 Core Field Parameters (Payload):
FieldTypeDescription
quoteTextstringQuote contents, recommended length 10-60 characters
quoteSpeakerstringAuthor or speaker's name
quoteTitlestringOptional, author's title or affiliation

Code Highlight Card

SOURCE CODE

Displays static code snippets in an IDE-like interface with syntax highlighting and line numbers.

💡 Best Use Cases:Best for programming tutorials, algorithm walk-throughs, or system designs.
✍️ Recommendations:Avoid pasting long scripts. Focus on core functions to ensure readability on mobile screens.
CUEVO Backend Video Rendering Viewport (Simulation)
L
SOURCE_CODE

Code Highlight Card

1def compile_final_shot(shot_id):
2 # Load LTX video and TTS audio
3 video = load_video(shot_id)
4 audio = load_audio(shot_id)
5 return merge_av(video, audio)
📋 Core Field Parameters (Payload):
FieldTypeDescription
codestringSource code text, supported up to 18 lines
languagestringProgramming language, e.g., python, javascript, rust
filenamestringOptional, tab title at the top-right of the card

Code Run Card

TERMINAL CONSOLE

Displays code in the top section and slides in a simulated terminal console at the bottom to show runtime outputs.

💡 Best Use Cases:Prints terminal feedback logs, perfect for interactive programming lectures.
✍️ Recommendations:Set passed=true to print out exit codes and success message logs in bright green.
CUEVO Backend Video Rendering Viewport (Simulation)
L
CODE_RUN_CARD

Code Run Card

def calculate_viral_score(views, rate):
    score = (views * rate) / 100
    if rate > 0.15:
        score *= 1.5
    return round(score, 2)

result = calculate_viral_score(15200, 0.18)
print(f"Score: {result}")
Output: Score: 41.04Success
📋 Core Field Parameters (Payload):
FieldTypeDescription
codestringCode body snippet
passedbooleanToggles green [SUCCESS] or red [FAIL] terminal statuses
takeawaystringHighlight summary at the bottom

Diagram Card

SYSTEM ARCHITECTURE

Shows architecture diagrams, flow charts, or Excalidraw-style sketch assets.

💡 Best Use Cases:Explains complex systems, workflows, pipeline directions, and dependency models.
✍️ Recommendations:Define clear nodes and directions in prompts (e.g., A -> B -> C) to help the rendering engine draw clear structures.
CUEVO Backend Video Rendering Viewport (Simulation)
L
DIAGRAM_CARD

Diagram Card

Director LLMScript InputTask: NormalAudio SynthesizerClone Voice 98%EnabledMotion Engine30+ Body PosesVisual EngineScene ComposerVideo RenderFPS: 60.0 | webm
📋 Core Field Parameters (Payload):
FieldTypeDescription
diagramContentstringText prompt describing the chart logic
diagramStylestringVisual style, e.g., 'sketch', 'neon'

Poster Card

CHAPTER BANNER

Displays full-screen titles on rich gradient backdrops, marking chapter transitions.

💡 Best Use Cases:Used for chapter transitions, introductions, or segments requiring a shift in viewer focus.
✍️ Recommendations:The engine automatically turns poster cards into full-screen layouts, shifting the presenter to a voiceover role.
CUEVO Backend Video Rendering Viewport (Simulation)
Visual MatrixAUTOMATION SYSTEM
CUEVO
Procedural Timeline Pipeline
Frame Rate: 60.0100% Auto Export
📋 Core Field Parameters (Payload):
FieldTypeDescription
posterContentstringText-to-image prompt
posterStylestringStyle template, e.g., 'tech_gradient', 'ink_wash'

Webpage Card

BROWSER VIEWPORT

Simulates a browser window, loads a URL, and auto-scrolls down the page.

💡 Best Use Cases:Showcases SaaS interfaces, articles, or documentation sites without manual screen recordings.
✍️ Recommendations:Ensure the URL is public; the scraper takes a 1280x720 snapshot and scrolls it dynamically.
CUEVO Backend Video Rendering Viewport (Simulation)
https://cuevo.ai
Cuevo AI Avatar

Micro-gestures algorithm inserts blinking, nodding, and smiling at script tags.

📋 Core Field Parameters (Payload):
FieldTypeDescription
webpageUrlstringAbsolute destination webpage URL
webpageHighlightSelectorstringOptional, CSS selector to highlight elements with red circles

3D Neural Network Card

DEEP LEARNING MODEL

Generates a rotating 3D multilayer neural network topology with active nodes.

💡 Best Use Cases:Simplifies deep learning, showing forward pass weights and activation behaviors in 3D.
✍️ Recommendations:Highlight specific layers with 'nnHighlightLayer' to draw pulsing rings around active node sets.
CUEVO Backend Video Rendering Viewport (Simulation)
Neural Network topology
Topology: [3, 4, 2] Active Learning
📋 Core Field Parameters (Payload):
FieldTypeDescription
nnLayersstringComma-separated layer counts, e.g., '4, 8, 8, 2'
nnShowConnectionsbooleanSpecifies whether to show weight connections

3D Molecule Card

CHEMICAL STRUCTURE

Creates a rotating 3D chemical structure in space (ball-and-stick, licorice, or space-filling style).

💡 Best Use Cases:Presents molecule structures in pharma, chemistry, or physics topics.
✍️ Recommendations:Ensure SMILES strings conform to IUPAC specs; the engine auto-calculates 3D geometries.
CUEVO Backend Video Rendering Viewport (Simulation)
3D Molecule Structure
CO
SMILES: CO (Methanol Structure)
📋 Core Field Parameters (Payload):
FieldTypeDescription
moleculeSmilesstringSMILES string representation, e.g., 'CCO' (Ethanol) or 'c1ccccc1' (Benzene)

Ziwei Chart Card

ASTROLOGY BOARD

Draws a 4x4 astrology chart based on Chinese Ziwei metaphysics, listing key houses and star distributions.

💡 Best Use Cases:Designed for astrology content creators, supporting red focal overlays on specific houses.
✍️ Recommendations:Tweak palace details, then click 'Reflect & Refine' to autofill house properties.
CUEVO Backend Video Rendering Viewport (Simulation)
L
ZIWEI_CHART

Ziwei Chart Card

Travel (Shen)
Jumen
Health (You)
Tianxiang
Wealth (Xu)
Wuqi Qisha
Ji
Children (Hai)
Taiyang
Friends (Wei)
Tianji
Sanfang Sizheng
Spouse (Zi)
Tiantong
Career (Wu)
Lianzhen Pojun
Quan
Brothers (Chou)
Ziwei
Property (Si)
Taiyin
Fortune (Chen)
Tanlang
Parents (Mao)
Tianfu
Self (Yin)
Ziwei Zuofu
Ke
Chart Analysis
Self / Wealth
Duan Yu Analysis
Old Phrase: Yang Tuo Jia Ji
Misread: Will Crash
Neutral: Friction & Delays
📋 Core Field Parameters (Payload):
FieldTypeDescription
ziweiPalacesstringPalace data inputs, one line per house
ziweiFocusstringHouse names to highlight, e.g., 'Wealth House'

Zhouyi Hexagram Card

HEXAGRAM MUTATION

Renders primary and mutated hexagrams side-by-side with quotes and interpretations.

💡 Best Use Cases:Perfect for daily updates on I Ching philosophy or classical Chinese teachings.
✍️ Recommendations:The engine draws the hexagram lines based on names, so no manual rendering details are required.
CUEVO Backend Video Rendering Viewport (Simulation)
L
ZHOUYI_HEXAGRAM

Zhouyi Hexagram Card

Xu Hexagram 5th Line: Preparation
Q: If I leave now, how does the next 3-month outlook look?
Primary (Xu)
Water on Sky
Line 5 Mutation
Mutated (Tai)
Earth on Sky
"Waiting with food & drink, auspicious"
Waiting isn't doing nothing; compile requirements and maintain your pace.
Hexagrams don't make decisions for you; they show where you are stuck.
📋 Core Field Parameters (Payload):
FieldTypeDescription
questionstringDivination question context, e.g., 'Daily guidance'
originalHexagramstringPrimary hexagram name, e.g., 'Hexagram 5'
movingLinesstringChanging lines indices, e.g., '5' or 'nine-five'

Any Other Questions?

Our support team is online on weekdays to help you with custom avatar training and enterprise batch rendering.

Contact Support