mulmocast 2.2.1 → 2.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,13 +23,12 @@ const buildColumnCard = (col) => {
23
23
  }
24
24
  if (col.content) {
25
25
  const centerCls = col.icon ? "text-center" : "";
26
- inner.push(`<div class="mt-3 space-y-3 flex-1 min-h-0 overflow-hidden flex flex-col ${centerCls}">`);
26
+ inner.push(`<div class="mt-4 space-y-4 flex-1 min-h-0 overflow-auto flex flex-col ${centerCls}">`);
27
27
  inner.push(renderCardContentBlocks(col.content));
28
28
  inner.push(`</div>`);
29
29
  }
30
30
  if (col.footer) {
31
- inner.push(`<div class="flex-1"></div>`);
32
- inner.push(`<p class="text-sm text-d-dim font-body mt-3">${escapeHtml(col.footer)}</p>`);
31
+ inner.push(`<p class="text-sm text-d-dim font-body mt-auto pt-3">${escapeHtml(col.footer)}</p>`);
33
32
  }
34
33
  return cardWrap(accent, inner.join("\n"), "flex-1");
35
34
  };
@@ -43,7 +42,7 @@ export const layoutColumns = (data) => {
43
42
  colElements.push(`<div class="flex items-center shrink-0"><span class="text-2xl text-d-dim">\u25B6</span></div>`);
44
43
  }
45
44
  });
46
- parts.push(`<div class="flex gap-4 px-12 mt-5 flex-1 min-h-0 items-stretch">`);
45
+ parts.push(`<div class="flex gap-4 px-12 mt-5 flex-1 min-h-0 items-start">`);
47
46
  parts.push(colElements.join("\n"));
48
47
  parts.push(`</div>`);
49
48
  if (data.callout) {
@@ -5,20 +5,18 @@ const buildPanel = (panel) => {
5
5
  const inner = [];
6
6
  inner.push(`<h3 class="text-xl font-bold text-${c(accent)} font-body">${escapeHtml(panel.title)}</h3>`);
7
7
  if (panel.content) {
8
- inner.push(`<div class="mt-4 space-y-3 flex-1 min-h-0 overflow-hidden flex flex-col">`);
8
+ inner.push(`<div class="mt-5 space-y-4 flex-1 min-h-0 overflow-auto flex flex-col">`);
9
9
  inner.push(renderContentBlocks(panel.content));
10
10
  inner.push(`</div>`);
11
11
  }
12
12
  if (panel.footer) {
13
- if (!panel.content)
14
- inner.push(`<div class="flex-1"></div>`);
15
- inner.push(`<p class="text-sm text-d-dim font-body mt-3">${escapeHtml(panel.footer)}</p>`);
13
+ inner.push(`<p class="text-sm text-d-dim font-body mt-auto pt-3">${escapeHtml(panel.footer)}</p>`);
16
14
  }
17
15
  return cardWrap(accent, inner.join("\n"), "flex-1");
18
16
  };
19
17
  export const layoutComparison = (data) => {
20
18
  const parts = [slideHeader(data)];
21
- parts.push(`<div class="flex gap-5 px-12 mt-5 flex-1 min-h-0 items-stretch">`);
19
+ parts.push(`<div class="flex gap-5 px-12 mt-5 flex-1 min-h-0 items-start">`);
22
20
  parts.push(buildPanel(data.left));
23
21
  parts.push(buildPanel(data.right));
24
22
  parts.push(`</div>`);
@@ -8,7 +8,7 @@ export const layoutGrid = (data) => {
8
8
  parts.push(`<div class="px-12 pt-5 shrink-0">`);
9
9
  parts.push(` <h2 class="text-[42px] leading-tight font-title font-bold text-d-text">${nl2br(data.title)}</h2>`);
10
10
  parts.push(`</div>`);
11
- parts.push(`<div class="grid grid-cols-${nCols} gap-4 px-12 mt-5 flex-1 min-h-0 overflow-hidden content-start">`);
11
+ parts.push(`<div class="grid grid-cols-${nCols} gap-4 px-12 mt-5 flex-1 min-h-0 overflow-hidden content-center">`);
12
12
  (data.items || []).forEach((item) => {
13
13
  const itemAccent = item.accentColor || "primary";
14
14
  const inner = [];
@@ -1,21 +1,34 @@
1
- import { escapeHtml, c, slideHeader, renderCalloutBar } from "../utils.js";
1
+ import { escapeHtml, nl2br, c, renderCalloutBar } from "../utils.js";
2
2
  export const layoutStats = (data) => {
3
- const parts = [slideHeader(data)];
3
+ const accent = data.accentColor || "primary";
4
4
  const stats = data.stats || [];
5
- parts.push(`<div class="flex gap-6 px-12 mt-8 flex-1 items-start">`);
5
+ const parts = [];
6
+ parts.push(`<div class="h-[3px] bg-${c(accent)} shrink-0"></div>`);
7
+ parts.push(`<div class="flex-1 flex flex-col justify-center px-12 min-h-0">`);
8
+ // Header inside centering wrapper
9
+ if (data.stepLabel) {
10
+ parts.push(`<p class="text-sm font-bold text-${c(accent)} font-body">${escapeHtml(data.stepLabel)}</p>`);
11
+ }
12
+ parts.push(`<h2 class="text-[42px] leading-tight font-title font-bold text-d-text">${nl2br(data.title)}</h2>`);
13
+ if (data.subtitle) {
14
+ parts.push(`<p class="text-[15px] text-d-dim mt-2 font-body">${nl2br(data.subtitle)}</p>`);
15
+ }
16
+ // Stats cards
17
+ parts.push(`<div class="flex gap-6 mt-10">`);
6
18
  stats.forEach((stat) => {
7
19
  const color = stat.color || data.accentColor || "primary";
8
- parts.push(`<div class="flex-1 bg-d-card rounded-lg shadow-lg p-8 text-center">`);
20
+ parts.push(`<div class="flex-1 bg-d-card rounded-lg shadow-lg p-10 text-center">`);
9
21
  parts.push(` <div class="h-[3px] bg-${c(color)} rounded-full w-12 mx-auto mb-6"></div>`);
10
- parts.push(` <p class="text-[48px] font-bold text-${c(color)} font-body leading-none">${escapeHtml(stat.value)}</p>`);
11
- parts.push(` <p class="text-base text-d-muted font-body mt-3">${escapeHtml(stat.label)}</p>`);
22
+ parts.push(` <p class="text-[52px] font-bold text-${c(color)} font-body leading-none">${escapeHtml(stat.value)}</p>`);
23
+ parts.push(` <p class="text-lg text-d-muted font-body mt-4">${escapeHtml(stat.label)}</p>`);
12
24
  if (stat.change) {
13
25
  const changeColor = stat.change.startsWith("+") ? "success" : "danger";
14
- parts.push(` <p class="text-sm font-bold text-${c(changeColor)} font-body mt-2">${escapeHtml(stat.change)}</p>`);
26
+ parts.push(` <p class="text-base font-bold text-${c(changeColor)} font-body mt-3">${escapeHtml(stat.change)}</p>`);
15
27
  }
16
28
  parts.push(`</div>`);
17
29
  });
18
30
  parts.push(`</div>`);
31
+ parts.push(`</div>`);
19
32
  if (data.callout) {
20
33
  parts.push(`<div class="mt-auto pb-4">${renderCalloutBar(data.callout)}</div>`);
21
34
  }
@@ -1,9 +1,21 @@
1
- import { escapeHtml, nl2br, c, slideHeader } from "../utils.js";
1
+ import { escapeHtml, nl2br, c } from "../utils.js";
2
2
  export const layoutTimeline = (data) => {
3
- const parts = [slideHeader(data)];
3
+ const accent = data.accentColor || "primary";
4
+ const parts = [];
4
5
  const items = data.items || [];
5
- parts.push(`<div class="flex items-start px-12 mt-8 flex-1 relative">`);
6
- parts.push(`<div class="absolute left-16 right-16 top-[52px] h-[2px] bg-d-alt"></div>`);
6
+ parts.push(`<div class="h-[3px] bg-${c(accent)} shrink-0"></div>`);
7
+ parts.push(`<div class="flex-1 flex flex-col justify-center px-12 min-h-0">`);
8
+ // Header inside centering wrapper
9
+ if (data.stepLabel) {
10
+ parts.push(`<p class="text-sm font-bold text-${c(accent)} font-body">${escapeHtml(data.stepLabel)}</p>`);
11
+ }
12
+ parts.push(`<h2 class="text-[42px] leading-tight font-title font-bold text-d-text">${nl2br(data.title)}</h2>`);
13
+ if (data.subtitle) {
14
+ parts.push(`<p class="text-[15px] text-d-dim mt-2 font-body">${nl2br(data.subtitle)}</p>`);
15
+ }
16
+ // Timeline items
17
+ parts.push(`<div class="flex items-start mt-10 relative">`);
18
+ parts.push(`<div class="absolute left-4 right-4 top-[52px] h-[2px] bg-d-alt"></div>`);
7
19
  items.forEach((item) => {
8
20
  const color = item.color || data.accentColor || "primary";
9
21
  const dotBorder = item.done ? `bg-${c(color)}` : `bg-d-alt`;
@@ -20,5 +32,6 @@ export const layoutTimeline = (data) => {
20
32
  parts.push(`</div>`);
21
33
  });
22
34
  parts.push(`</div>`);
35
+ parts.push(`</div>`);
23
36
  return parts.join("\n");
24
37
  };
@@ -1,3 +1,3 @@
1
1
  import type { SlideTheme, SlideLayout } from "./schema.js";
2
2
  /** Generate a complete HTML document for a single slide */
3
- export declare const generateSlideHTML: (theme: SlideTheme, slide: SlideLayout) => string;
3
+ export declare const generateSlideHTML: (theme: SlideTheme, slide: SlideLayout, reference?: string) => string;
@@ -22,7 +22,7 @@ const buildCdnScripts = (theme, slide) => {
22
22
  return scripts.join("\n");
23
23
  };
24
24
  /** Generate a complete HTML document for a single slide */
25
- export const generateSlideHTML = (theme, slide) => {
25
+ export const generateSlideHTML = (theme, slide, reference) => {
26
26
  const content = renderSlideContent(slide);
27
27
  const twConfig = buildTailwindConfig(theme);
28
28
  const cdnScripts = buildCdnScripts(theme, slide);
@@ -30,6 +30,9 @@ export const generateSlideHTML = (theme, slide) => {
30
30
  const bgCls = slideStyle?.bgColor ? "" : "bg-d-bg";
31
31
  const inlineStyle = slideStyle?.bgColor ? ` style="background-color:#${sanitizeHex(slideStyle.bgColor)}"` : "";
32
32
  const footer = slideStyle?.footer ? `<p class="absolute bottom-2 right-4 text-xs text-d-dim font-body">${escapeHtml(slideStyle.footer)}</p>` : "";
33
+ const referenceHtml = reference
34
+ ? `<div class="mt-auto px-4 pb-2"><p class="text-sm text-d-muted font-body opacity-80">${escapeHtml(reference)}</p></div>`
35
+ : "";
33
36
  return `<!DOCTYPE html>
34
37
  <html lang="en" class="h-full">
35
38
  <head>
@@ -45,6 +48,7 @@ ${cdnScripts}
45
48
  <body class="h-full">
46
49
  <div class="relative overflow-hidden ${bgCls} w-full h-full flex flex-col"${inlineStyle}>
47
50
  ${content}
51
+ ${referenceHtml}
48
52
  ${footer}
49
53
  </div>
50
54
  </body>
@@ -4421,6 +4421,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
4421
4421
  }, z.core.$strip>>;
4422
4422
  layout: z.ZodLiteral<"funnel">;
4423
4423
  }, z.core.$strip>], "layout">;
4424
+ reference: z.ZodOptional<z.ZodString>;
4424
4425
  }, z.core.$strict>;
4425
4426
  export type AccentColorKey = z.infer<typeof accentColorKeySchema>;
4426
4427
  export type SlideThemeColors = z.infer<typeof slideThemeColorsSchema>;
@@ -345,5 +345,6 @@ export const mulmoSlideMediaSchema = z
345
345
  type: z.literal("slide"),
346
346
  theme: slideThemeSchema.optional(),
347
347
  slide: slideLayoutSchema,
348
+ reference: z.string().optional(),
348
349
  })
349
350
  .strict();
@@ -1740,6 +1740,7 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
1740
1740
  }, z.core.$strip>>;
1741
1741
  layout: z.ZodLiteral<"funnel">;
1742
1742
  }, z.core.$strip>], "layout">;
1743
+ reference: z.ZodOptional<z.ZodString>;
1743
1744
  }, z.core.$strict>]>;
1744
1745
  export declare const mulmoAudioAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
1745
1746
  type: z.ZodLiteral<"audio">;
@@ -3566,6 +3567,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
3566
3567
  }, z.core.$strip>>;
3567
3568
  layout: z.ZodLiteral<"funnel">;
3568
3569
  }, z.core.$strip>], "layout">;
3570
+ reference: z.ZodOptional<z.ZodString>;
3569
3571
  }, z.core.$strict>]>>;
3570
3572
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
3571
3573
  type: z.ZodLiteral<"audio">;
@@ -6093,6 +6095,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
6093
6095
  }, z.core.$strip>>;
6094
6096
  layout: z.ZodLiteral<"funnel">;
6095
6097
  }, z.core.$strip>], "layout">;
6098
+ reference: z.ZodOptional<z.ZodString>;
6096
6099
  }, z.core.$strict>]>>;
6097
6100
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
6098
6101
  type: z.ZodLiteral<"audio">;
@@ -8281,6 +8284,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
8281
8284
  }, z.core.$strip>>;
8282
8285
  layout: z.ZodLiteral<"funnel">;
8283
8286
  }, z.core.$strip>], "layout">;
8287
+ reference: z.ZodOptional<z.ZodString>;
8284
8288
  }, z.core.$strict>]>>;
8285
8289
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
8286
8290
  type: z.ZodLiteral<"audio">;
@@ -4421,6 +4421,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
4421
4421
  }, z.core.$strip>>;
4422
4422
  layout: z.ZodLiteral<"funnel">;
4423
4423
  }, z.core.$strip>], "layout">;
4424
+ reference: z.ZodOptional<z.ZodString>;
4424
4425
  }, z.core.$strict>;
4425
4426
  export type AccentColorKey = z.infer<typeof accentColorKeySchema>;
4426
4427
  export type SlideThemeColors = z.infer<typeof slideThemeColorsSchema>;
@@ -345,5 +345,6 @@ export const mulmoSlideMediaSchema = z
345
345
  type: z.literal("slide"),
346
346
  theme: slideThemeSchema.optional(),
347
347
  slide: slideLayoutSchema,
348
+ reference: z.string().optional(),
348
349
  })
349
350
  .strict();
@@ -909,6 +909,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
909
909
  mono: string;
910
910
  };
911
911
  } | undefined;
912
+ reference?: string | undefined;
912
913
  } | {
913
914
  type: "image";
914
915
  source: {
@@ -2292,6 +2293,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2292
2293
  mono: string;
2293
2294
  };
2294
2295
  } | undefined;
2296
+ reference?: string | undefined;
2295
2297
  } | {
2296
2298
  type: "image";
2297
2299
  source: {
@@ -117,7 +117,8 @@ const processSlide = async (params) => {
117
117
  return;
118
118
  const theme = resolveTheme(params);
119
119
  const slide = resolveSlide(params, toFileUrl);
120
- const html = generateSlideHTML(theme, slide);
120
+ const reference = beat.image.reference;
121
+ const html = generateSlideHTML(theme, slide, reference);
121
122
  await renderHTMLToImage(html, imagePath, canvasSize.width, canvasSize.height);
122
123
  return imagePath;
123
124
  };
@@ -127,7 +128,8 @@ const dumpHtml = async (params) => {
127
128
  return;
128
129
  const theme = resolveTheme(params);
129
130
  const slide = resolveSlide(params);
130
- return generateSlideHTML(theme, slide);
131
+ const reference = beat.image.reference;
132
+ return generateSlideHTML(theme, slide, reference);
131
133
  };
132
134
  export const process = processSlide;
133
135
  export const path = parrotingImagePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",
@@ -23,6 +23,9 @@
23
23
  "default": "./lib/tools/complete_script.js"
24
24
  }
25
25
  },
26
+ "resolutions": {
27
+ "minimatch": "^10.2.2"
28
+ },
26
29
  "bin": {
27
30
  "mulmo": "lib/cli/bin.js",
28
31
  "mulmo-mcp": "lib/mcp/server.js"
@@ -107,7 +110,7 @@
107
110
  "marked": "^17.0.3",
108
111
  "mulmocast-vision": "^1.0.8",
109
112
  "ora": "^9.3.0",
110
- "puppeteer": "^24.37.4",
113
+ "puppeteer": "^24.37.5",
111
114
  "replicate": "^1.4.0",
112
115
  "yaml": "^2.8.2",
113
116
  "yargs": "^18.0.0",
@@ -121,7 +124,7 @@
121
124
  "@types/jsdom": "^27.0.0",
122
125
  "@types/yargs": "^17.0.35",
123
126
  "cross-env": "^10.1.0",
124
- "eslint": "^10.0.0",
127
+ "eslint": "^10.0.1",
125
128
  "eslint-config-prettier": "^10.1.8",
126
129
  "eslint-plugin-prettier": "^5.5.5",
127
130
  "eslint-plugin-sonarjs": "^4.0.0",
@@ -280,7 +280,8 @@
280
280
  "text": "5σ means the probability of a fluke is 1 in 3.5 million — the threshold for 'discovery' in particle physics.",
281
281
  "color": "warning"
282
282
  }
283
- }
283
+ },
284
+ "reference": "Source: CERN Annual Report 2024 — https://home.cern/resources/report"
284
285
  }
285
286
  }
286
287
  ]
@@ -0,0 +1,289 @@
1
+ {
2
+ "$mulmocast": { "version": "1.1" },
3
+ "lang": "en",
4
+ "title": "The Higgs Boson — Exploring the Origin of Mass",
5
+ "slideParams": {
6
+ "theme": {
7
+ "colors": {
8
+ "bg": "0B1120",
9
+ "bgCard": "162032",
10
+ "bgCardAlt": "1E2D45",
11
+ "text": "F0F4F8",
12
+ "textMuted": "A0AEC0",
13
+ "textDim": "4A5568",
14
+ "primary": "63B3ED",
15
+ "accent": "B794F4",
16
+ "success": "68D391",
17
+ "warning": "F6AD55",
18
+ "danger": "FC8181",
19
+ "info": "4FD1C5",
20
+ "highlight": "F687B3"
21
+ },
22
+ "fonts": { "title": "Georgia", "body": "Calibri", "mono": "Consolas" }
23
+ }
24
+ },
25
+ "imageParams": {
26
+ "provider": "google",
27
+ "model": "gemini-3-pro-image-preview",
28
+ "images": {
29
+ "detector": {
30
+ "type": "imagePrompt",
31
+ "prompt": "A massive cylindrical particle detector at CERN, showing intricate layers of sensors and electronics in warm orange and gold lighting, photorealistic, wide-angle view from inside the detector barrel"
32
+ },
33
+ "lhc": {
34
+ "type": "imagePrompt",
35
+ "prompt": "The Large Hadron Collider tunnel at CERN, a long curved underground tunnel with blue superconducting magnets stretching into the distance, cool blue lighting, photorealistic"
36
+ },
37
+ "higgs_event": {
38
+ "type": "imagePrompt",
39
+ "prompt": "A colorful particle collision event display from the CMS detector at CERN, showing radiating particle tracks in green, red and blue lines emanating from a central collision point on a dark background, scientific visualization style"
40
+ }
41
+ }
42
+ },
43
+ "beats": [
44
+ {
45
+ "text": "What is the Higgs boson? Let's look back at the history of its discovery.",
46
+ "image": {
47
+ "type": "slide",
48
+ "slide": {
49
+ "layout": "title",
50
+ "title": "The Higgs Boson",
51
+ "subtitle": "A Journey to the Origin of Mass",
52
+ "author": "Introduction to Particle Physics"
53
+ }
54
+ }
55
+ },
56
+ {
57
+ "text": "The Higgs boson holds a special place in the Standard Model.",
58
+ "image": {
59
+ "type": "slide",
60
+ "slide": {
61
+ "layout": "columns",
62
+ "title": "Particles of the Standard Model",
63
+ "subtitle": "17 Elementary Particles",
64
+ "columns": [
65
+ {
66
+ "title": "Fermions",
67
+ "accentColor": "primary",
68
+ "content": [
69
+ { "type": "imageRef", "ref": "detector", "alt": "Fermion interactions" },
70
+ { "type": "bullets", "items": ["Quarks (6 types)", "Leptons (6 types)"], "icon": "⚛" },
71
+ { "type": "text", "value": "Particles that make up matter", "dim": true }
72
+ ]
73
+ },
74
+ {
75
+ "title": "Bosons",
76
+ "accentColor": "accent",
77
+ "content": [
78
+ { "type": "imageRef", "ref": "lhc", "alt": "LHC tunnel" },
79
+ { "type": "bullets", "items": ["Photon", "W & Z bosons", "Gluon"], "icon": "⚡" },
80
+ { "type": "text", "value": "Force-carrying particles", "dim": true }
81
+ ]
82
+ },
83
+ {
84
+ "title": "Higgs Boson",
85
+ "accentColor": "highlight",
86
+ "content": [
87
+ { "type": "imageRef", "ref": "higgs_event", "alt": "Higgs boson decay" },
88
+ { "type": "text", "value": "Origin of Mass", "bold": true, "color": "highlight" },
89
+ { "type": "text", "value": "The only scalar particle. Discovered at CERN in 2012.", "dim": true }
90
+ ]
91
+ }
92
+ ]
93
+ }
94
+ }
95
+ },
96
+ {
97
+ "text": "Let's look at the Higgs boson decay event captured by the LHC detector.",
98
+ "image": {
99
+ "type": "slide",
100
+ "slide": {
101
+ "layout": "split",
102
+ "left": {
103
+ "title": "CMS Detector Event",
104
+ "content": [{ "type": "imageRef", "ref": "detector", "alt": "CMS detector event display", "fit": "cover" }]
105
+ },
106
+ "right": {
107
+ "title": "What Are We Seeing?",
108
+ "content": [
109
+ { "type": "text", "value": "Protons are collided at near light speed, and the resulting particle tracks are captured by the detector." },
110
+ {
111
+ "type": "callout",
112
+ "text": "The Higgs boson cannot be observed directly — its existence is inferred from pairs of decay particles.",
113
+ "label": "Key Point",
114
+ "color": "info",
115
+ "style": "info"
116
+ },
117
+ { "type": "metric", "value": "125 GeV", "label": "Mass of the Higgs boson" }
118
+ ]
119
+ }
120
+ }
121
+ }
122
+ },
123
+ {
124
+ "text": "A comparison of the ATLAS and CMS experiments.",
125
+ "image": {
126
+ "type": "slide",
127
+ "slide": {
128
+ "layout": "comparison",
129
+ "title": "Two Experiments, One Discovery",
130
+ "subtitle": "Each independently achieved 5σ significance",
131
+ "left": {
132
+ "title": "ATLAS Experiment",
133
+ "accentColor": "primary",
134
+ "content": [
135
+ { "type": "imageRef", "ref": "detector", "alt": "ATLAS detector" },
136
+ { "type": "metric", "value": "5.9σ", "label": "Statistical significance", "color": "primary" },
137
+ { "type": "text", "value": "25m diameter, 46m long. About 3,000 physicists participated." }
138
+ ]
139
+ },
140
+ "right": {
141
+ "title": "CMS Experiment",
142
+ "accentColor": "accent",
143
+ "content": [
144
+ { "type": "imageRef", "ref": "lhc", "alt": "CMS detector" },
145
+ { "type": "metric", "value": "5.0σ", "label": "Statistical significance", "color": "accent" },
146
+ { "type": "text", "value": "More compact but equipped with a superconducting solenoid magnet. About 4,000 participants." }
147
+ ]
148
+ },
149
+ "callout": {
150
+ "text": "The simultaneous confirmation by two independent experiments dramatically increased confidence in the result",
151
+ "color": "success"
152
+ }
153
+ }
154
+ }
155
+ },
156
+ {
157
+ "text": "Here's a grid overview of CERN's key facilities.",
158
+ "image": {
159
+ "type": "slide",
160
+ "slide": {
161
+ "layout": "grid",
162
+ "title": "CERN Experimental Facilities",
163
+ "subtitle": "The world's largest particle physics laboratory on the Swiss-French border",
164
+ "gridColumns": 2,
165
+ "items": [
166
+ {
167
+ "title": "LHC Accelerator",
168
+ "accentColor": "primary",
169
+ "content": [
170
+ { "type": "imageRef", "ref": "lhc", "alt": "LHC tunnel", "fit": "cover" },
171
+ { "type": "text", "value": "27km circumference, 100m underground", "dim": true }
172
+ ]
173
+ },
174
+ {
175
+ "title": "ATLAS Detector",
176
+ "accentColor": "accent",
177
+ "content": [
178
+ { "type": "imageRef", "ref": "detector", "alt": "ATLAS detector overview", "fit": "cover" },
179
+ { "type": "text", "value": "25m diameter, weighing 7,000 tonnes", "dim": true }
180
+ ]
181
+ },
182
+ {
183
+ "title": "CMS Detector",
184
+ "accentColor": "info",
185
+ "content": [
186
+ { "type": "imageRef", "ref": "higgs_event", "alt": "CMS detector", "fit": "cover" },
187
+ { "type": "text", "value": "Features superconducting solenoid", "dim": true }
188
+ ]
189
+ },
190
+ {
191
+ "title": "CERN Control Centre",
192
+ "accentColor": "warning",
193
+ "content": [
194
+ { "type": "imageRef", "ref": "detector", "alt": "CERN control room", "fit": "cover" },
195
+ { "type": "text", "value": "24/7 accelerator monitoring", "dim": true }
196
+ ]
197
+ }
198
+ ]
199
+ }
200
+ }
201
+ },
202
+ {
203
+ "text": "Here are the key milestones leading to the discovery.",
204
+ "image": {
205
+ "type": "slide",
206
+ "slide": {
207
+ "layout": "timeline",
208
+ "title": "Road to Discovery",
209
+ "items": [
210
+ { "date": "1964", "title": "Higgs Mechanism Proposed", "description": "P. Higgs et al. published the mass acquisition theory", "done": true },
211
+ { "date": "1983", "title": "W & Z Bosons Discovered", "description": "Confirmed at CERN's SPS experiments", "done": true, "color": "accent" },
212
+ {
213
+ "date": "2008",
214
+ "title": "LHC Begins Operation",
215
+ "description": "The world's largest particle accelerator starts up",
216
+ "done": true,
217
+ "color": "info"
218
+ },
219
+ {
220
+ "date": "2012.7.4",
221
+ "title": "Higgs Boson Discovered",
222
+ "description": "ATLAS and CMS experiments announce simultaneously",
223
+ "done": true,
224
+ "color": "highlight"
225
+ },
226
+ { "date": "2013", "title": "Nobel Prize in Physics", "description": "Awarded to Higgs and Englert", "done": true, "color": "success" }
227
+ ]
228
+ }
229
+ }
230
+ },
231
+ {
232
+ "text": "Let's explore the relationship between the Higgs field and mass.",
233
+ "image": {
234
+ "type": "slide",
235
+ "slide": {
236
+ "layout": "split",
237
+ "left": {
238
+ "title": "Visualizing the Higgs Field",
239
+ "content": [
240
+ { "type": "imageRef", "ref": "higgs_event", "alt": "Higgs field concept", "fit": "contain" },
241
+ { "type": "text", "value": "A field that fills all of space", "dim": true, "align": "center" }
242
+ ]
243
+ },
244
+ "right": {
245
+ "title": "Why Does Mass Arise?",
246
+ "content": [
247
+ {
248
+ "type": "callout",
249
+ "text": "The Higgs field exists everywhere in the universe. Particles acquire mass by interacting with this field.",
250
+ "style": "quote"
251
+ },
252
+ { "type": "divider", "color": "accent" },
253
+ {
254
+ "type": "bullets",
255
+ "items": [
256
+ "Photon: no interaction with Higgs field → zero mass",
257
+ "W boson: strong interaction → heavy",
258
+ "Top quark: strongest interaction → heaviest"
259
+ ],
260
+ "icon": "→"
261
+ },
262
+ { "type": "callout", "text": "Mass = strength of coupling to the Higgs field", "label": "Key Insight", "color": "highlight" }
263
+ ]
264
+ }
265
+ }
266
+ }
267
+ },
268
+ {
269
+ "text": "Let's look at the statistical significance of the discovery in numbers.",
270
+ "image": {
271
+ "type": "slide",
272
+ "slide": {
273
+ "layout": "stats",
274
+ "title": "The Higgs Discovery in Numbers",
275
+ "stats": [
276
+ { "value": "5σ", "label": "Statistical significance", "color": "highlight" },
277
+ { "value": "125.25 GeV", "label": "Measured mass" },
278
+ { "value": "~10⁻²² s", "label": "Lifetime" },
279
+ { "value": "10,000+", "label": "Researchers involved", "color": "info" }
280
+ ],
281
+ "callout": {
282
+ "text": "5σ means the probability of a fluke is 1 in 3.5 million — the threshold for 'discovery' in particle physics.",
283
+ "color": "warning"
284
+ }
285
+ }
286
+ }
287
+ }
288
+ ]
289
+ }
@@ -0,0 +1,289 @@
1
+ {
2
+ "$mulmocast": { "version": "1.1" },
3
+ "lang": "en",
4
+ "title": "The Higgs Boson — Exploring the Origin of Mass",
5
+ "slideParams": {
6
+ "theme": {
7
+ "colors": {
8
+ "bg": "0B1120",
9
+ "bgCard": "162032",
10
+ "bgCardAlt": "1E2D45",
11
+ "text": "F0F4F8",
12
+ "textMuted": "A0AEC0",
13
+ "textDim": "4A5568",
14
+ "primary": "63B3ED",
15
+ "accent": "B794F4",
16
+ "success": "68D391",
17
+ "warning": "F6AD55",
18
+ "danger": "FC8181",
19
+ "info": "4FD1C5",
20
+ "highlight": "F687B3"
21
+ },
22
+ "fonts": { "title": "Georgia", "body": "Calibri", "mono": "Consolas" }
23
+ }
24
+ },
25
+ "imageParams": {
26
+ "provider": "genai",
27
+ "model": "gemini-3-pro-image-preview",
28
+ "images": {
29
+ "detector": {
30
+ "type": "imagePrompt",
31
+ "prompt": "A massive cylindrical particle detector at CERN, showing intricate layers of sensors and electronics in warm orange and gold lighting, photorealistic, wide-angle view from inside the detector barrel"
32
+ },
33
+ "lhc": {
34
+ "type": "imagePrompt",
35
+ "prompt": "The Large Hadron Collider tunnel at CERN, a long curved underground tunnel with blue superconducting magnets stretching into the distance, cool blue lighting, photorealistic"
36
+ },
37
+ "higgs_event": {
38
+ "type": "imagePrompt",
39
+ "prompt": "A colorful particle collision event display from the CMS detector at CERN, showing radiating particle tracks in green, red and blue lines emanating from a central collision point on a dark background, scientific visualization style"
40
+ }
41
+ }
42
+ },
43
+ "beats": [
44
+ {
45
+ "text": "What is the Higgs boson? Let's look back at the history of its discovery.",
46
+ "image": {
47
+ "type": "slide",
48
+ "slide": {
49
+ "layout": "title",
50
+ "title": "The Higgs Boson",
51
+ "subtitle": "A Journey to the Origin of Mass",
52
+ "author": "Introduction to Particle Physics"
53
+ }
54
+ }
55
+ },
56
+ {
57
+ "text": "The Higgs boson holds a special place in the Standard Model.",
58
+ "image": {
59
+ "type": "slide",
60
+ "slide": {
61
+ "layout": "columns",
62
+ "title": "Particles of the Standard Model",
63
+ "subtitle": "17 Elementary Particles",
64
+ "columns": [
65
+ {
66
+ "title": "Fermions",
67
+ "accentColor": "primary",
68
+ "content": [
69
+ { "type": "imageRef", "ref": "detector", "alt": "Fermion interactions" },
70
+ { "type": "bullets", "items": ["Quarks (6 types)", "Leptons (6 types)"], "icon": "⚛" },
71
+ { "type": "text", "value": "Particles that make up matter", "dim": true }
72
+ ]
73
+ },
74
+ {
75
+ "title": "Bosons",
76
+ "accentColor": "accent",
77
+ "content": [
78
+ { "type": "imageRef", "ref": "lhc", "alt": "LHC tunnel" },
79
+ { "type": "bullets", "items": ["Photon", "W & Z bosons", "Gluon"], "icon": "⚡" },
80
+ { "type": "text", "value": "Force-carrying particles", "dim": true }
81
+ ]
82
+ },
83
+ {
84
+ "title": "Higgs Boson",
85
+ "accentColor": "highlight",
86
+ "content": [
87
+ { "type": "imageRef", "ref": "higgs_event", "alt": "Higgs boson decay" },
88
+ { "type": "text", "value": "Origin of Mass", "bold": true, "color": "highlight" },
89
+ { "type": "text", "value": "The only scalar particle. Discovered at CERN in 2012.", "dim": true }
90
+ ]
91
+ }
92
+ ]
93
+ }
94
+ }
95
+ },
96
+ {
97
+ "text": "Let's look at the Higgs boson decay event captured by the LHC detector.",
98
+ "image": {
99
+ "type": "slide",
100
+ "slide": {
101
+ "layout": "split",
102
+ "left": {
103
+ "title": "CMS Detector Event",
104
+ "content": [{ "type": "imageRef", "ref": "detector", "alt": "CMS detector event display", "fit": "cover" }]
105
+ },
106
+ "right": {
107
+ "title": "What Are We Seeing?",
108
+ "content": [
109
+ { "type": "text", "value": "Protons are collided at near light speed, and the resulting particle tracks are captured by the detector." },
110
+ {
111
+ "type": "callout",
112
+ "text": "The Higgs boson cannot be observed directly — its existence is inferred from pairs of decay particles.",
113
+ "label": "Key Point",
114
+ "color": "info",
115
+ "style": "info"
116
+ },
117
+ { "type": "metric", "value": "125 GeV", "label": "Mass of the Higgs boson" }
118
+ ]
119
+ }
120
+ }
121
+ }
122
+ },
123
+ {
124
+ "text": "A comparison of the ATLAS and CMS experiments.",
125
+ "image": {
126
+ "type": "slide",
127
+ "slide": {
128
+ "layout": "comparison",
129
+ "title": "Two Experiments, One Discovery",
130
+ "subtitle": "Each independently achieved 5σ significance",
131
+ "left": {
132
+ "title": "ATLAS Experiment",
133
+ "accentColor": "primary",
134
+ "content": [
135
+ { "type": "imageRef", "ref": "detector", "alt": "ATLAS detector" },
136
+ { "type": "metric", "value": "5.9σ", "label": "Statistical significance", "color": "primary" },
137
+ { "type": "text", "value": "25m diameter, 46m long. About 3,000 physicists participated." }
138
+ ]
139
+ },
140
+ "right": {
141
+ "title": "CMS Experiment",
142
+ "accentColor": "accent",
143
+ "content": [
144
+ { "type": "imageRef", "ref": "lhc", "alt": "CMS detector" },
145
+ { "type": "metric", "value": "5.0σ", "label": "Statistical significance", "color": "accent" },
146
+ { "type": "text", "value": "More compact but equipped with a superconducting solenoid magnet. About 4,000 participants." }
147
+ ]
148
+ },
149
+ "callout": {
150
+ "text": "The simultaneous confirmation by two independent experiments dramatically increased confidence in the result",
151
+ "color": "success"
152
+ }
153
+ }
154
+ }
155
+ },
156
+ {
157
+ "text": "Here's a grid overview of CERN's key facilities.",
158
+ "image": {
159
+ "type": "slide",
160
+ "slide": {
161
+ "layout": "grid",
162
+ "title": "CERN Experimental Facilities",
163
+ "subtitle": "The world's largest particle physics laboratory on the Swiss-French border",
164
+ "gridColumns": 2,
165
+ "items": [
166
+ {
167
+ "title": "LHC Accelerator",
168
+ "accentColor": "primary",
169
+ "content": [
170
+ { "type": "imageRef", "ref": "lhc", "alt": "LHC tunnel", "fit": "cover" },
171
+ { "type": "text", "value": "27km circumference, 100m underground", "dim": true }
172
+ ]
173
+ },
174
+ {
175
+ "title": "ATLAS Detector",
176
+ "accentColor": "accent",
177
+ "content": [
178
+ { "type": "imageRef", "ref": "detector", "alt": "ATLAS detector overview", "fit": "cover" },
179
+ { "type": "text", "value": "25m diameter, weighing 7,000 tonnes", "dim": true }
180
+ ]
181
+ },
182
+ {
183
+ "title": "CMS Detector",
184
+ "accentColor": "info",
185
+ "content": [
186
+ { "type": "imageRef", "ref": "higgs_event", "alt": "CMS detector", "fit": "cover" },
187
+ { "type": "text", "value": "Features superconducting solenoid", "dim": true }
188
+ ]
189
+ },
190
+ {
191
+ "title": "CERN Control Centre",
192
+ "accentColor": "warning",
193
+ "content": [
194
+ { "type": "imageRef", "ref": "detector", "alt": "CERN control room", "fit": "cover" },
195
+ { "type": "text", "value": "24/7 accelerator monitoring", "dim": true }
196
+ ]
197
+ }
198
+ ]
199
+ }
200
+ }
201
+ },
202
+ {
203
+ "text": "Here are the key milestones leading to the discovery.",
204
+ "image": {
205
+ "type": "slide",
206
+ "slide": {
207
+ "layout": "timeline",
208
+ "title": "Road to Discovery",
209
+ "items": [
210
+ { "date": "1964", "title": "Higgs Mechanism Proposed", "description": "P. Higgs et al. published the mass acquisition theory", "done": true },
211
+ { "date": "1983", "title": "W & Z Bosons Discovered", "description": "Confirmed at CERN's SPS experiments", "done": true, "color": "accent" },
212
+ {
213
+ "date": "2008",
214
+ "title": "LHC Begins Operation",
215
+ "description": "The world's largest particle accelerator starts up",
216
+ "done": true,
217
+ "color": "info"
218
+ },
219
+ {
220
+ "date": "2012.7.4",
221
+ "title": "Higgs Boson Discovered",
222
+ "description": "ATLAS and CMS experiments announce simultaneously",
223
+ "done": true,
224
+ "color": "highlight"
225
+ },
226
+ { "date": "2013", "title": "Nobel Prize in Physics", "description": "Awarded to Higgs and Englert", "done": true, "color": "success" }
227
+ ]
228
+ }
229
+ }
230
+ },
231
+ {
232
+ "text": "Let's explore the relationship between the Higgs field and mass.",
233
+ "image": {
234
+ "type": "slide",
235
+ "slide": {
236
+ "layout": "split",
237
+ "left": {
238
+ "title": "Visualizing the Higgs Field",
239
+ "content": [
240
+ { "type": "imageRef", "ref": "higgs_event", "alt": "Higgs field concept", "fit": "contain" },
241
+ { "type": "text", "value": "A field that fills all of space", "dim": true, "align": "center" }
242
+ ]
243
+ },
244
+ "right": {
245
+ "title": "Why Does Mass Arise?",
246
+ "content": [
247
+ {
248
+ "type": "callout",
249
+ "text": "The Higgs field exists everywhere in the universe. Particles acquire mass by interacting with this field.",
250
+ "style": "quote"
251
+ },
252
+ { "type": "divider", "color": "accent" },
253
+ {
254
+ "type": "bullets",
255
+ "items": [
256
+ "Photon: no interaction with Higgs field → zero mass",
257
+ "W boson: strong interaction → heavy",
258
+ "Top quark: strongest interaction → heaviest"
259
+ ],
260
+ "icon": "→"
261
+ },
262
+ { "type": "callout", "text": "Mass = strength of coupling to the Higgs field", "label": "Key Insight", "color": "highlight" }
263
+ ]
264
+ }
265
+ }
266
+ }
267
+ },
268
+ {
269
+ "text": "Let's look at the statistical significance of the discovery in numbers.",
270
+ "image": {
271
+ "type": "slide",
272
+ "slide": {
273
+ "layout": "stats",
274
+ "title": "The Higgs Discovery in Numbers",
275
+ "stats": [
276
+ { "value": "5σ", "label": "Statistical significance", "color": "highlight" },
277
+ { "value": "125.25 GeV", "label": "Measured mass" },
278
+ { "value": "~10⁻²² s", "label": "Lifetime" },
279
+ { "value": "10,000+", "label": "Researchers involved", "color": "info" }
280
+ ],
281
+ "callout": {
282
+ "text": "5σ means the probability of a fluke is 1 in 3.5 million — the threshold for 'discovery' in particle physics.",
283
+ "color": "warning"
284
+ }
285
+ }
286
+ }
287
+ }
288
+ ]
289
+ }
@@ -0,0 +1,252 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "canvasSize": {
6
+ "width": 720,
7
+ "height": 720
8
+ },
9
+ "speechParams": {
10
+ "speakers": {
11
+ "OpenAISlow": {
12
+ "voiceId": "shimmer",
13
+ "speechOptions": {
14
+ "speed": 0.5
15
+ },
16
+ "provider": "openai"
17
+ },
18
+ "OpenAINormal": {
19
+ "voiceId": "shimmer",
20
+ "speechOptions": {
21
+ "speed": 1
22
+ },
23
+ "provider": "openai"
24
+ },
25
+ "OpenAI2x": {
26
+ "voiceId": "shimmer",
27
+ "speechOptions": {
28
+ "speed": 2
29
+ },
30
+ "provider": "openai"
31
+ },
32
+ "OpenAIMax": {
33
+ "voiceId": "shimmer",
34
+ "speechOptions": {
35
+ "speed": 4
36
+ },
37
+ "provider": "openai"
38
+ },
39
+ "GoogleSlow": {
40
+ "voiceId": "en-US-Standard-F",
41
+ "speechOptions": {
42
+ "speed": 0.5
43
+ },
44
+ "provider": "google"
45
+ },
46
+ "GoogleNormal": {
47
+ "voiceId": "en-US-Standard-F",
48
+ "speechOptions": {
49
+ "speed": 1
50
+ },
51
+ "provider": "google"
52
+ },
53
+ "GoogleMax": {
54
+ "voiceId": "en-US-Standard-F",
55
+ "speechOptions": {
56
+ "speed": 2
57
+ },
58
+ "provider": "google"
59
+ },
60
+ "ElevenLabsSlow": {
61
+ "voiceId": "3JDquces8E8bkmvbh6Bc",
62
+ "speechOptions": {
63
+ "speed": 0.7
64
+ },
65
+ "provider": "elevenlabs"
66
+ },
67
+ "ElevenLabsNormal": {
68
+ "voiceId": "3JDquces8E8bkmvbh6Bc",
69
+ "speechOptions": {
70
+ "speed": 1
71
+ },
72
+ "provider": "elevenlabs"
73
+ },
74
+ "ElevenLabsMax": {
75
+ "voiceId": "3JDquces8E8bkmvbh6Bc",
76
+ "speechOptions": {
77
+ "speed": 1.2
78
+ },
79
+ "provider": "elevenlabs"
80
+ },
81
+ "GeminiSlow": {
82
+ "voiceId": "Kore",
83
+ "speechOptions": {
84
+ "instruction": "Speak very slowly and deliberately, with long pauses between words. Take your time with each syllable."
85
+ },
86
+ "provider": "gemini"
87
+ },
88
+ "GeminiNormal": {
89
+ "voiceId": "Kore",
90
+ "provider": "gemini"
91
+ },
92
+ "GeminiFast": {
93
+ "voiceId": "Kore",
94
+ "speechOptions": {
95
+ "instruction": "Speak at a very fast pace, like a rapid-fire news anchor delivering breaking news. Rush through the words quickly."
96
+ },
97
+ "provider": "gemini"
98
+ }
99
+ }
100
+ },
101
+ "imageParams": {
102
+ "provider": "openai",
103
+ "images": {}
104
+ },
105
+ "movieParams": {
106
+ "provider": "replicate"
107
+ },
108
+ "soundEffectParams": {
109
+ "provider": "replicate"
110
+ },
111
+ "textSlideParams": {
112
+ "cssStyles": ["body { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; text-align: center; }"]
113
+ },
114
+ "audioParams": {
115
+ "padding": 0.3,
116
+ "introPadding": 1,
117
+ "closingPadding": 0.8,
118
+ "outroPadding": 1,
119
+ "bgmVolume": 0.2,
120
+ "audioVolume": 1,
121
+ "suppressSpeech": false
122
+ },
123
+ "title": "TTS Speed Parameter Test",
124
+ "lang": "en",
125
+ "beats": [
126
+ {
127
+ "speaker": "OpenAISlow",
128
+ "text": "The quick brown fox jumps over the lazy dog. OpenAI at half speed.",
129
+ "id": "d67a8f87-013a-4016-b4cd-528c04cbc297",
130
+ "image": {
131
+ "type": "markdown",
132
+ "markdown": ["## OpenAI", "## speed: 0.5 (slow)"]
133
+ }
134
+ },
135
+ {
136
+ "speaker": "OpenAINormal",
137
+ "text": "The quick brown fox jumps over the lazy dog. OpenAI at normal speed.",
138
+ "id": "36119196-a206-4aed-8674-cc9bad47ef0c",
139
+ "image": {
140
+ "type": "markdown",
141
+ "markdown": ["## OpenAI", "## speed: 1.0 (normal)"]
142
+ }
143
+ },
144
+ {
145
+ "speaker": "OpenAI2x",
146
+ "text": "The quick brown fox jumps over the lazy dog. OpenAI at double speed.",
147
+ "id": "970e7d58-d497-4eea-9861-f04e848db10b",
148
+ "image": {
149
+ "type": "markdown",
150
+ "markdown": ["## OpenAI", "## speed: 2.0 (2x)"]
151
+ }
152
+ },
153
+ {
154
+ "speaker": "OpenAIMax",
155
+ "text": "The quick brown fox jumps over the lazy dog. OpenAI at maximum speed.",
156
+ "id": "3ca5d27e-82af-48de-97e9-1a43f739f79b",
157
+ "image": {
158
+ "type": "markdown",
159
+ "markdown": ["## OpenAI", "## speed: 4.0 (max)"]
160
+ }
161
+ },
162
+ {
163
+ "speaker": "GoogleSlow",
164
+ "text": "The quick brown fox jumps over the lazy dog. Google Cloud at half speed.",
165
+ "id": "04628574-8b75-4ca8-b6a5-6c37713c0c0e",
166
+ "image": {
167
+ "type": "markdown",
168
+ "markdown": ["## Google", "## speed: 0.5 (slow)"]
169
+ }
170
+ },
171
+ {
172
+ "speaker": "GoogleNormal",
173
+ "text": "The quick brown fox jumps over the lazy dog. Google Cloud at normal speed.",
174
+ "id": "4716cafe-3b5f-4d23-b6e9-716f44b14171",
175
+ "image": {
176
+ "type": "markdown",
177
+ "markdown": ["## Google", "## speed: 1.0 (normal)"]
178
+ }
179
+ },
180
+ {
181
+ "speaker": "GoogleMax",
182
+ "text": "The quick brown fox jumps over the lazy dog. Google Cloud at maximum speed.",
183
+ "id": "dc98f3a6-4394-4c14-a88e-7308ddace081",
184
+ "image": {
185
+ "type": "markdown",
186
+ "markdown": ["## Google", "## speed: 2.0 (max)"]
187
+ }
188
+ },
189
+ {
190
+ "speaker": "ElevenLabsSlow",
191
+ "text": "The quick brown fox jumps over the lazy dog. ElevenLabs at minimum speed.",
192
+ "id": "d8a72016-c51d-45d4-9e14-bc5889066cdc",
193
+ "image": {
194
+ "type": "markdown",
195
+ "markdown": ["## ElevenLabs", "## speed: 0.7 (slow)"]
196
+ }
197
+ },
198
+ {
199
+ "speaker": "ElevenLabsNormal",
200
+ "text": "The quick brown fox jumps over the lazy dog. ElevenLabs at normal speed.",
201
+ "id": "cad52e62-9981-44cd-ae26-70c230fdf850",
202
+ "image": {
203
+ "type": "markdown",
204
+ "markdown": ["## ElevenLabs", "## speed: 1.0 (normal)"]
205
+ }
206
+ },
207
+ {
208
+ "speaker": "ElevenLabsMax",
209
+ "text": "The quick brown fox jumps over the lazy dog. ElevenLabs at maximum speed.",
210
+ "id": "a13cbd67-2fd7-4f97-90fb-82d5dcd40bcb",
211
+ "image": {
212
+ "type": "markdown",
213
+ "markdown": ["## ElevenLabs", "## speed: 1.2 (max)"]
214
+ }
215
+ },
216
+ {
217
+ "speaker": "GeminiSlow",
218
+ "text": "The quick brown fox jumps over the lazy dog. Gemini with slow prompt.",
219
+ "id": "14e932ae-9bcb-4d17-802e-902a7dec9aad",
220
+ "image": {
221
+ "type": "markdown",
222
+ "markdown": [
223
+ "## Gemini slow",
224
+ "### instruction (prompt):",
225
+ "### Speak very slowly and deliberately, with long pauses between words. Take your time with each syllable."
226
+ ]
227
+ }
228
+ },
229
+ {
230
+ "speaker": "GeminiNormal",
231
+ "text": "The quick brown fox jumps over the lazy dog. Gemini at normal speed.",
232
+ "id": "c223b046-65dc-4425-987f-3ea3f36e7b27",
233
+ "image": {
234
+ "type": "markdown",
235
+ "markdown": ["## Gemini normal", "### instruction (prompt):", "### (no instruction)"]
236
+ }
237
+ },
238
+ {
239
+ "speaker": "GeminiFast",
240
+ "text": "The quick brown fox jumps over the lazy dog. Gemini with fast prompt.",
241
+ "id": "88db419f-bf6d-42f7-8d04-02131806c3a5",
242
+ "image": {
243
+ "type": "markdown",
244
+ "markdown": [
245
+ "## Gemini fast",
246
+ "### instruction (prompt):",
247
+ "### Speak at a very fast pace, like a rapid-fire news anchor delivering breaking news. Rush through the words quickly."
248
+ ]
249
+ }
250
+ }
251
+ ]
252
+ }