File size: 81,495 Bytes
16a57e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 | {
"video_title": "The Flat Earth Charlatan of 1864",
"layout": {
"rows": 12,
"columns": 6,
"filled_cells": 72
},
"channel_style": {
"style_name": "Oversimplified Comedic Educational Cartoon",
"outline": "thick bold black outlines, consistent weight",
"color_palette": "flat vector colors, no gradients, no soft shading, high saturation",
"signature_colors": ["bright blue", "shiny gold"],
"proportions": "large head 40% of body, small body, stubby limbs",
"expression": "highly exaggerated cartoonish emotions, googly eyes, smug smiles, spiral eyes when crazy, sweat drops when panicked",
"background": "clean simple flat backgrounds, minimal props, white or single-tone",
"text_policy": "ABSOLUTELY no text/words/letters/numbers/captions/labels/speech bubbles/watermarks",
"lighting": "flat even lighting, single spotlight for dramatic gag",
"texture": "subtle white paper texture overlay optional",
"narration_tone": "deadpan delivery, absurd visual contrast is the joke",
"character_design": "anthropomorphize non-humans for comedy; humans cartoon-stylized with signature outfit/colors",
"mascot": "tiny gold crown appears somewhere in every video as Easter egg"
},
"video_style": {
"era_palette": "vibrant blue, bright red, shiny gold, crisp white, deep Victorian brown",
"theme": "Victorian charlatan, snake oil, pseudoscience"
},
"global_style": {
"art_style": "Oversimplified Comedic Educational Cartoon, thick bold black outlines, flat vector colors, large head 40% of body small body stubby limbs, highly exaggerated cartoonish emotions, clean simple flat backgrounds, flat even lighting, subtle white paper texture, Victorian charlatan theme",
"image_model_style": "thick bold black outlines, flat vector colors no gradients, large head small body, googly eyes, smug smiles, spiral eyes when crazy, sweat drops when panicked, clean simple flat backgrounds, no text/words/letters/numbers/captions/labels/speech bubbles/watermarks, tiny gold crown Easter egg somewhere",
"aspect_ratio": "16:9",
"consistency": true,
"palette": "vibrant blue, bright red, shiny gold, crisp white, deep Victorian brown",
"text_in_image": false,
"numbers_in_image": false,
"captions_in_image": false
},
"characters": [
{
"character_id": "CHAR_001",
"name": "Parallax (Samuel Rowbotham)",
"type": "historical_figure",
"visual_signature": "cartoon Samuel Rowbotham with slicked black hair, large head small body, neat Victorian black suit, red bowtie, expressive smug cartoon face with googly eyes and smug smile",
"consistency_tags": ["parallax", "black_suit", "red_bowtie", "smug"]
},
{
"character_id": "CHAR_002",
"name": "Newtonian Scientist",
"type": "historical_figure",
"visual_signature": "cartoon Newtonian scientist with wild white hair, large head small body, blue naval coat with brass buttons, steamed red angry face, holding a giant brass telescope, googly eyes",
"consistency_tags": ["scientist", "wild_hair", "naval_coat", "brass_telescope"]
}
],
"scenes": [
{
"scene_id": "001",
"parent_lines": [
"Plymouth, England, 1864.",
"All is set.",
"A telescope has been deployed and adjusted.",
"Lines of sight investigated and measured."
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "Plymouth, England, 1864. All is set. A telescope has been deployed and adjusted. Lines of sight investigated and measured.",
"visual_goal": "Establish the setting with a telescope on the beach",
"image_prompt": "simple cartoon rocky beach at Plymouth England in 1864, giant brass telescope on wooden tripod aimed out to sea, tiny gold crown hidden among pebbles on shore, thick bold black outlines, flat vector colors no gradients, large head small body style, clean simple flat background, flat even lighting, subtle white paper texture, no text/words/letters/numbers/captions/labels/speech bubbles/watermarks",
"img2video_prompt": "camera static, waves crash gently, telescope glints in sunlight; mood: calm before the experiment",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "1864"
},
"transition_in": "fade"
},
{
"scene_id": "002",
"parent_lines": [
"A crowd gathers to watch this face off.",
"Two opposing sides meeting to try and solve the question of the age.",
"Is the Earth round or flat?"
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "A crowd gathers to watch this face off. Two opposing sides meeting to try and solve the question of the age. Is the Earth round or flat?",
"visual_goal": "A crowd on the beach, two groups facing each other",
"image_prompt": "cartoon crowd of Victorian people gathering on Plymouth beach, some in naval uniforms others in everyday clothes, CHAR_002 stands with arms crossed looking annoyed, tiny gold crown floating as a seagull carries it in the sky, thick bold black outlines, flat vector colors no gradients, large head small body, clean simple flat background, no text",
"img2video_prompt": "camera slowly pans across the crowd, CHAR_002 fumes, seagull with crown flies overhead; mood: tense anticipation",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "round or flat"
}
},
{
"scene_id": "003",
"parent_lines": [
"On one side are the Newtonians, men from Greenwich, many of them with naval experience and seemingly perhaps a bit frustrated they even need to be here at all.",
"Some are navigators and surveyors.",
"Some have experience in the southern oceans."
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "On one side are the Newtonians, men from Greenwich, many of them with naval experience and seemingly perhaps a bit frustrated they even need to be here at all. Some are navigators and surveyors. Some have experience in the southern oceans.",
"visual_goal": "Show the Newtonian group looking annoyed",
"image_prompt": "CHAR_002 front and center, flanked by cartoon sailors and surveyors with googly eyes, all looking frustrated, standing on the beach beside a telescope, tiny gold crown on the telescope mount, thick bold black outlines, flat vector colors no gradients, large head small body, clean simple flat background, no text",
"img2video_prompt": "CHAR_002 gestures angrily at the ocean, other scientists nod, steam puffs from CHAR_002 ears; mood: exasperated",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "frustrated"
}
},
{
"scene_id": "004",
"parent_lines": [
"And on the other side is a man who will only give his name as parallax.",
"A prolific and convincing lecturer, debater, and now author who insists that he can prove the earth is flat, stationary, and the sun is only 4,000 mi away."
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "And on the other side is a man who will only give his name as parallax. A prolific and convincing lecturer, debater, and now author who insists that he can prove the earth is flat, stationary, and the sun is only 4,000 mi away.",
"visual_goal": "Introduce CHAR_001 Parallax looking smug",
"image_prompt": "CHAR_001 stands alone on the other side of the beach, arms folded, smug cartoon smile with googly eyes, wearing black suit and red bowtie, tiny gold crown on his head, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "CHAR_001 smirks and tilts head, camera pushes in slightly; mood: confident arrogance",
"voiceover": {
"tone": "playful",
"pace": "normal",
"gender": "neutral",
"emphasis": "parallax"
}
},
{
"scene_id": "005",
"parent_lines": [
"They will train the telescope at a lighthouse 14 miles out to sea, then take it to the rocky shore below and do so again."
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "They will train the telescope at a lighthouse 14 miles out to sea, then take it to the rocky shore below and do so again.",
"visual_goal": "Show the lighthouse in the distance, telescope pointing",
"image_prompt": "cartoon lighthouse far on the horizon, CHAR_002 adjusting the giant telescope toward it, tiny gold crown placed on the telescope lens cap, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "telescope swivels to aim at the lighthouse, CHAR_002 squints; mood: focused",
"voiceover": {
"tone": "calm",
"pace": "slow",
"gender": "neutral",
"emphasis": "lighthouse"
}
},
{
"scene_id": "006",
"parent_lines": [
"The Newtonians have precisely calculated that the curvature of the Earth will obscure most of the lighthouse, but leave the lantern visible."
],
"beat_index": 1,
"section": "hook",
"duration": 5,
"narration": "The Newtonians have precisely calculated that the curvature of the Earth will obscure most of the lighthouse, but leave the lantern visible.",
"visual_goal": "Show the lighthouse partially obscured by curve",
"image_prompt": "cartoon diagram overlaid on the scene, showing a dotted curve line obscuring lower part of the lighthouse, CHAR_002 holds a chalkboard with calculation marks, tiny gold crown drawn on the chalkboard, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera pushes toward the lighthouse diagram, the curve line wobbles dramatically; mood: confident prediction",
"voiceover": {
"tone": "calm",
"pace": "normal",
"gender": "neutral",
"emphasis": "precisely calculated"
}
},
{
"scene_id": "007",
"parent_lines": [
"Yet, incredibly, this will not go as any of them hoped."
],
"beat_index": 1,
"section": "hook",
"duration": 4,
"narration": "Yet, incredibly, this will not go as any of them hoped.",
"visual_goal": "Foreboding shot of the experiment setup",
"image_prompt": "cartoon ominous clouds gathering over the beach experiment setup, CHAR_001 and CHAR_002 stand at opposite sides, tiny gold crown caught in a sudden wind eddy, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera slowly zooms out, clouds darken, mood: impending disaster",
"voiceover": {
"tone": "mysterious",
"pace": "slow",
"gender": "neutral",
"emphasis": "incredibly"
}
},
{
"scene_id": "008",
"parent_lines": [
"[music] Thank you so much to Planet Wild for funding frontline ecosystem restoration missions where it really matters.",
"Learn how you can help after the episode."
],
"beat_index": 1,
"section": "sponsor_notice",
"duration": 4,
"narration": "[music] Thank you so much to Planet Wild for funding frontline ecosystem restoration missions where it really matters. Learn how you can help after the episode.",
"visual_goal": "Brief sponsor logo / Planet Wild mention",
"image_prompt": "simple cartoon Earth rotating, tiny gold crown floating in space, thick bold black outlines, flat vector colors, clean simple flat background, no text",
"img2video_prompt": "Earth slowly rotates, camera gently pushes in, stars twinkle; mood: friendly",
"voiceover": {
"tone": "warm",
"pace": "normal",
"gender": "neutral",
"emphasis": "Planet Wild"
},
"transition_in": "cut"
},
{
"scene_id": "009",
"parent_lines": [
"Samuel Burley Robottom, pseudonym parallax, is more than any other single person responsible for the modern theory that the earth is not a globe.",
"Yet, incredibly, historians are unsure whether he himself believed it.",
"Part of that is his background."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Samuel Burley Robottom, pseudonym parallax, is more than any other single person responsible for the modern theory that the earth is not a globe. Yet, incredibly, historians are unsure whether he himself believed it. Part of that is his background.",
"visual_goal": "Introduce Robottom with a question mark over his head",
"image_prompt": "CHAR_001 standing in Victorian clothing, a giant question mark floating over his head, he has a smug yet mysterious expression, tiny gold crown on a floating question mark, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "question mark bobbles, CHAR_001 shrugs with a smirk; mood: doubtful intrigue",
"voiceover": {
"tone": "mysterious",
"pace": "normal",
"gender": "neutral",
"emphasis": "unsure"
}
},
{
"scene_id": "010",
"parent_lines": [
"Born in 1816 outside Manchester, Robotam's early life is hard to pin down because so much of it comes from his own accounts, writings that are not on the whole all that trustworthy given some of his later claims.",
"Generally, his life was unremarkable until the 1830s when he got involved in a utopian socialist community as a traveling lecturer and recruiter for the settlement in the Bedford fence before the community ejected him in 1839.",
"That is the reasons given for this vary."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Born in 1816 outside Manchester, Robotam's early life is hard to pin down because so much of it comes from his own accounts, writings that are not on the whole all that trustworthy given some of his later claims. Generally, his life was unremarkable until the 1830s when he got involved in a utopian socialist community as a traveling lecturer and recruiter for the settlement in the Bedford fence before the community ejected him in 1839. That is the reasons given for this vary.",
"visual_goal": "Show a young Robottom in the utopian community, being kicked out",
"image_prompt": "cartoon young CHAR_001 being pushed out of a commune gate by angry cartoon communalists, tiny gold crown falling off his head, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "CHAR_001 stumbles backward, gate slams, crown bounces on ground; mood: comedic ejection",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "ejected"
}
},
{
"scene_id": "011",
"parent_lines": [
"In one version, the 21-year-old Robottom started to advocate the practice of free love.",
"While a dueling account claims that he had increasingly tried to insist that belief in a flat earth be part of the commune's life."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "In one version, the 21-year-old Robottom started to advocate the practice of free love. While a dueling account claims that he had increasingly tried to insist that belief in a flat earth be part of the commune's life.",
"visual_goal": "Two conflicting speech bubbles above a confused commune",
"image_prompt": "split cartoon image: left side CHAR_001 with heart eyes and free love poster, right side CHAR_001 holding a flat earth diagram, confused commune members in middle, tiny gold crown split between the two, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera quickly shifts between the two versions, commune members scratch heads; mood: absurd confusion",
"voiceover": {
"tone": "deadpan",
"pace": "fast",
"gender": "neutral",
"emphasis": "free love"
}
},
{
"scene_id": "012",
"parent_lines": [
"According to his own account, Robottom had believed this since the age of seven, where he'd heard his grandfather discussing Newtonian principles with friends and supposedly told them that they couldn't prove the Newtonian model.",
"And when he grew up, he would pledge his entire life and fortune to proving that the earth was flat, which is 100% not an invented antecdote and definitely how a 7-year-old sounds when they talk, right?"
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "According to his own account, Robottom had believed this since the age of seven, where he'd heard his grandfather discussing Newtonian principles with friends and supposedly told them that they couldn't prove the Newtonian model. And when he grew up, he would pledge his entire life and fortune to proving that the earth was flat, which is 100% not an invented antecdote and definitely how a 7-year-old sounds when they talk, right?",
"visual_goal": "Flashback to a tiny 7-year-old Parallax debating his grandfather",
"image_prompt": "cartoon flashback: small CHAR_001 as a child with oversized glasses, pointing at his baffled grandfather, speech bubble contains only a tiny gold crown symbol, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "child CHAR_001 bounces with excitement, grandfather's jaw drops; mood: exaggerated childhood memory",
"voiceover": {
"tone": "playful",
"pace": "normal",
"gender": "neutral",
"emphasis": "7-year-old"
}
},
{
"scene_id": "013",
"parent_lines": [
"But whether he tried to force these flat earth views on the commune or not, it was in Bedford that Robottom conducted the experiment that he'd base his career on, the Bedford level experiment.",
"He gave varying accounts of what this was, but he apparently laid down on the frozen ice of the incredibly straight old Bedford Canal with a telescope and saw people ice skating on a pond 6 mi distant."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "But whether he tried to force these flat earth views on the commune or not, it was in Bedford that Robottom conducted the experiment that he'd base his career on, the Bedford level experiment. He gave varying accounts of what this was, but he apparently laid down on the frozen ice of the incredibly straight old Bedford Canal with a telescope and saw people ice skating on a pond 6 mi distant.",
"visual_goal": "Robottom lying on ice with a telescope",
"image_prompt": "cartoon CHAR_001 lying flat on a frozen canal, eye pressed to a tiny telescope, distant faint figures ice skating, tiny gold crown frozen into the ice nearby, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "camera pans slowly along the canal, CHAR_001 shivering but smiling, distant skaters glide; mood: cold and absurd",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "Bedford level experiment"
}
},
{
"scene_id": "014",
"parent_lines": [
"Or he waited chest deep in a canal and saw a bridge.",
"Or he stood on a level bridge and looked down at two boats he'd sent flying flags.",
"Whatever happened, he'd claimed that he'd seen the objects far past where they should have disappeared beneath the curvature of the Earth."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Or he waited chest deep in a canal and saw a bridge. Or he stood on a level bridge and looked down at two boats he'd sent flying flags. Whatever happened, he'd claimed that he'd seen the objects far past where they should have disappeared beneath the curvature of the Earth.",
"visual_goal": "Multiple silly versions of the Bedford experiment",
"image_prompt": "montage of three cartoon vignettes: CHAR_001 in water up to chin, CHAR_001 on bridge with flags, all with a tiny gold crown somewhere (bobbing in water, on bridge rail, etc.), thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera quickly flips between the vignettes; mood: inconsistent storytelling",
"voiceover": {
"tone": "deadpan",
"pace": "fast",
"gender": "neutral",
"emphasis": "varying accounts"
}
},
{
"scene_id": "015",
"parent_lines": [
"And yeah, he probably could see them because it was known even at the time that atmospheric refraction could make objects visible despite being below the horizon.",
"Whatever."
],
"beat_index": 1,
"section": "intro",
"duration": 4,
"narration": "And yeah, he probably could see them because it was known even at the time that atmospheric refraction could make objects visible despite being below the horizon. Whatever.",
"visual_goal": "A diagram showing refraction, Robottom shrugging",
"image_prompt": "cartoon diagram of light bending over a curved ocean, CHAR_002 pointing at the diagram with a smug look, CHAR_001 in background shrugging, tiny gold crown on a light ray, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "light ray bends exaggeratedly, CHAR_002 taps the diagram, CHAR_001 looks away; mood: dismissive explanation",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "whatever"
}
},
{
"scene_id": "016",
"parent_lines": [
"Regardless of these quote discoveries, for most of the 1840s, he actually turned his attention to another topic entirely, curing death.",
"In 1845, he published a long pamphlet on health and diet titled Jeez, are you kidding me? Okay. [clears throat] [groaning] Biology, an inquiry into the cause of natural death, showing it not to arise from old age, but from a gradual process of consolidation, arising from substances which may be so far controlled as to preserve health and active life for an indefinable period.",
"44 words."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Regardless of these quote discoveries, for most of the 1840s, he actually turned his attention to another topic entirely, curing death. In 1845, he published a long pamphlet on health and diet titled Jeez, are you kidding me? Okay. [clears throat] [groaning] Biology, an inquiry into the cause of natural death, showing it not to arise from old age, but from a gradual process of consolidation, arising from substances which may be so far controlled as to preserve health and active life for an indefinable period. 44 words.",
"visual_goal": "Show the ridiculously long pamphlet title",
"image_prompt": "CHAR_001 proudly holding an enormous scroll that unrolls across the scene, the scroll is covered in scribble marks (no text), tiny gold crown used as a paperweight on one end, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "scroll unrolls dramatically, CHAR_001 grins, camera tracks along the scroll until it runs out of frame; mood: over-the-top presentation",
"voiceover": {
"tone": "deadpan",
"pace": "fast",
"gender": "neutral",
"emphasis": "44 words"
}
},
{
"scene_id": "017",
"parent_lines": [
"Basically, he claimed the body hardened over time due to the buildup of quote earthy substances.",
"To combat this, he advocated not eating bread and only consuming fresh vegetables, meat, and free phosphates, which were the key to health and longevity."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Basically, he claimed the body hardened over time due to the buildup of quote earthy substances. To combat this, he advocated not eating bread and only consuming fresh vegetables, meat, and free phosphates, which were the key to health and longevity.",
"visual_goal": "A human body turning into a rock, then a healthy plate",
"image_prompt": "cartoon progression: CHAR_001's body stiffening into a stone statue, but a dinner plate with vegetables and a glowing phosphate bottle reverses it, tiny gold crown on the phosphate bottle, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "the stone CHAR_001 cracks and reverts to flesh as the plate slides in, camera shakes; mood: quack medicine miracle",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "free phosphates"
}
},
{
"scene_id": "018",
"parent_lines": [
"He of course advised taking this in the form of phosphoric acid, which is safe when diluted and is an ingredient in many sodas.",
"However, Robottom advised taking it by the half ounce as a way to live extraordinarily long lives like the patriarchs of the Bible and theoretically achieve immortality."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "He of course advised taking it by the half ounce as a way to live extraordinarily long lives like the patriarchs of the Bible and theoretically achieve immortality.",
"visual_goal": "Robottom holding a large bottle of phosphoric acid",
"image_prompt": "CHAR_001 holding a giant labeled bottle of green glowing liquid, tiny gold crown cap on the bottle, biblical patriarchs with long beards in background looking disapproving, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "liquid glows ominously, CHAR_001 winks, patriarchs shake heads; mood: snake oil promotion",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "immortality"
}
},
{
"scene_id": "019",
"parent_lines": [
"Of course, Robot didn't have a medical degree, but apparently his literary alter ego named Trion did because the pamphlet spoke of him successfully treating 320 patients with this regimen.",
"It's unclear whether he was quietly selling quack medicine in conjunction with this literature or if that just came later."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "Of course, Robot didn't have a medical degree, but apparently his literary alter ego named Trion did because the pamphlet spoke of him successfully treating 320 patients with this regimen. It's unclear whether he was quietly selling quack medicine in conjunction with this literature or if that just came later.",
"visual_goal": "Robottom disguised as a fake doctor with a diploma",
"image_prompt": "CHAR_001 wearing a stethoscope and fake doctor's coat over his black suit, holding a diploma with a comically large seal, tiny gold crown on the diploma seal, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "diploma wobbles, CHAR_001 looks shifty, camera zooms in on the crown seal; mood: dubious credentials",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "Trion"
}
},
{
"scene_id": "020",
"parent_lines": [
"But until his business of being a fake doctor took off, Robotam had to make ends meet with the three most powerful tools he had at his disposal.",
"His voice, his pen, and his debate skills."
],
"beat_index": 1,
"section": "intro",
"duration": 5,
"narration": "But until his business of being a fake doctor took off, Robotam had to make ends meet with the three most powerful tools he had at his disposal. His voice, his pen, and his debate skills.",
"visual_goal": "Robottom holding a microphone made of a pen and a debate gavel",
"image_prompt": "CHAR_001 standing atop a soapbox, holding a quill pen like a sword and a speech bubble with a fist, tiny gold crown on the quill, cartoon audience below looking up, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001 orates passionately, quill pen glows, audience cheers; mood: charismatic speaker",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "three tools"
}
},
{
"scene_id": "021",
"parent_lines": [
"In January of 1849, he held an engagement under the pseudonym parallax at the Trowbridge Mechanics Institute to lecture on the subject of the flat earth."
],
"beat_index": 1,
"section": "rising",
"duration": 4,
"narration": "In January of 1849, he held an engagement under the pseudonym parallax at the Trowbridge Mechanics Institute to lecture on the subject of the flat earth.",
"visual_goal": "Robottom's first lecture in a small institute",
"image_prompt": "cartoon Victorian lecture hall, CHAR_001 at podium with a flat earth diagram behind him on an easel, tiny gold crown atop the easel, audience mixed with curious and skeptical faces, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "camera slowly dollies toward CHAR_001, audience members whisper; mood: the beginning of a career",
"voiceover": {
"tone": "calm",
"pace": "slow",
"gender": "neutral",
"emphasis": "1849"
}
},
{
"scene_id": "022",
"parent_lines": [
"Now, it should be noted that this professed belief of robottoms was weird.",
"Though several ancient religions had believed in a cosmology that included a flat earth, philosophers in ancient Greece had proved the world was round and that knowledge was widespread in the medieval world and universally accepted by the Renaissance, which is part of what gave Robottom's lecture such a good hook."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Now, it should be noted that this professed belief of robottoms was weird. Though several ancient religions had believed in a cosmology that included a flat earth, philosophers in ancient Greece had proved the world was round and that knowledge was widespread in the medieval world and universally accepted by the Renaissance, which is part of what gave Robottom's lecture such a good hook.",
"visual_goal": "Contrast flat earth believers with the round earth proofs",
"image_prompt": "split scene: left side ancient flat disk with elephants and turtles, right side Greek scholar holding a sphere, CHAR_001 peeking from behind the flat disk with a 'gotcha' expression, tiny gold crown on the sphere, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "left side fades into right, CHAR_001 winks; mood: setting the stage for controversy",
"voiceover": {
"tone": "calm",
"pace": "normal",
"gender": "neutral",
"emphasis": "weird"
}
},
{
"scene_id": "023",
"parent_lines": [
"See, he lived in a time of lectures as entertainment when a traveling lecturer could make a lot of money speaking on a specialized topic like literature, history, and especially science.",
"Victorian sensibilities really pushed the idea of self- betterment through education and mechanics institutes sprung up all over Britain, offering space to lecturers and courses to educate the working classes."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "See, he lived in a time of lectures as entertainment when a traveling lecturer could make a lot of money speaking on a specialized topic like literature, history, and especially science. Victorian sensibilities really pushed the idea of self- betterment through education and mechanics institutes sprung up all over Britain, offering space to lecturers and courses to educate the working classes.",
"visual_goal": "Show a bustling Mechanics Institute with a lecture in progress",
"image_prompt": "cartoon Mechanics Institute filled with Victorian workers listening intently to a lecturer (not CHAR_001) on chemistry, tiny gold crown hanging from the chandelier, thick bold black outlines, flat vector colors, large head small body, clean simple flat background, no text",
"img2video_prompt": "camera sweeps across the engaged audience; mood: educational enthusiasm",
"voiceover": {
"tone": "calm",
"pace": "normal",
"gender": "neutral",
"emphasis": "lectures as entertainment"
}
},
{
"scene_id": "024",
"parent_lines": [
"Though some of these lecturers were legitimate teachers and writers, many were charlatans in it for the attention and money.",
"In some ways, it was the beginning of edutainment.",
"And of course, the more eye-catching and controversial a topic, the more you could pack a lecture hall for a 6 p or more per seat, baby."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Though some of these lecturers were legitimate teachers and writers, many were charlatans in it for the attention and money. In some ways, it was the beginning of edutainment. And of course, the more eye-catching and controversial a topic, the more you could pack a lecture hall for a 6 p or more per seat, baby.",
"visual_goal": "A lecture hall full of people throwing coins at the stage",
"image_prompt": "cartoon CHAR_001 on stage catching flying coins with a net, sign behind him shows a flat earth with a question mark, tiny gold crown among the coins, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "coins fly in arcs, CHAR_001 laughs gleefully; mood: edutainment hustle",
"voiceover": {
"tone": "playful",
"pace": "normal",
"gender": "neutral",
"emphasis": "6 pence"
}
},
{
"scene_id": "025",
"parent_lines": [
"Like, okay, maybe you don't believe that the world is flat, but isn't it worth it to pay a 6 pence to watch a guy try to convince you of something so nuts?",
"Like seriously, try to imagine a world where people watched pop culture versions of academic subjects as mass entertainment.",
"Imagine it.",
"Are you imagining it yet?",
"Do you have it in your mind's eye?",
"[laughter] Yeah, of course.",
"It sounds like YouTube, doesn't it?",
"This is pretty much like Victorian YouTube we're talking about."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Like, okay, maybe you don't believe that the world is flat, but isn't it worth it to pay a 6 pence to watch a guy try to convince you of something so nuts? Like seriously, try to imagine a world where people watched pop culture versions of academic subjects as mass entertainment. Imagine it. Are you imagining it yet? Do you have it in your mind's eye? [laughter] Yeah, of course. It sounds like YouTube, doesn't it? This is pretty much like Victorian YouTube we're talking about.",
"visual_goal": "Juxtapose a Victorian lecture with a modern YouTube screen",
"image_prompt": "split cartoony scene: left side CHAR_001 on stage with flat earth diagram, right side a glowing tablet with a play button and a tiny gold crown icon on the play button, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "left and right sides alternate pulsing, tablet play button bounces; mood: meta comparison",
"voiceover": {
"tone": "playful",
"pace": "fast",
"gender": "neutral",
"emphasis": "YouTube"
}
},
{
"scene_id": "026",
"parent_lines": [
"Robotam's first lecture was covered by the local press where apparently he laid out what would be his consistent arguments for the next three decades.",
"Namely that the Earth was not a globe.",
"It was more like a pizza with the North Pole at its center and a big ice wall around the outside forming the pizza crust."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Robotam's first lecture was covered by the local press where apparently he laid out what would be his consistent arguments for the next three decades. Namely that the Earth was not a globe. It was more like a pizza with the North Pole at its center and a big ice wall around the outside forming the pizza crust.",
"visual_goal": "Show a flat earth pizza-shaped map",
"image_prompt": "cartoon pizza-shaped flat earth with a tiny North Pole flag in center, ice wall crust around edge, CHAR_001 holding a slice, tiny gold crown topping the pizza, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "pizza slowly rotates, CHAR_001 takes a bite of the crust; mood: absurd cosmology",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "pizza"
}
},
{
"scene_id": "027",
"parent_lines": [
"Also, the Earth did not orbit the Sun.",
"Instead, the sun moved in a circular path above the Earth, and the moon was not lit due to its reflection, but because it was a self-illuminating object."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Also, the Earth did not orbit the Sun. Instead, the sun moved in a circular path above the Earth, and the moon was not lit due to its reflection, but because it was a self-illuminating object.",
"visual_goal": "Show a tiny sun circling above the flat earth pizza",
"image_prompt": "cartoon flat earth pizza with a miniature glowing sun circling on a track above, moon glowing with its own light bulb, tiny gold crown hanging from the sun track, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "sun orbits the earth along its track, moon flicks on like a lamp; mood: mechanistic fantasy",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "self-illuminating"
}
},
{
"scene_id": "028",
"parent_lines": [
"Both were close rather than far, with the sun only 4,000 mi from the Earth's surface, and the stars were not other suns far away, but points of light in the great vault of heaven.",
"In fact, the Earth was the only planet.",
"And below it were the primordial waters mentioned in Genesis before the Earth's creation, and the rocking of the great plate is what caused the tides rather than the moon's gravitational pole."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Both were close rather than far, with the sun only 4,000 mi from the Earth's surface, and the stars were not other suns far away, but points of light in the great vault of heaven. In fact, the Earth was the only planet. And below it were the primordial waters mentioned in Genesis before the Earth's creation, and the rocking of the great plate is what caused the tides rather than the moon's gravitational pole.",
"visual_goal": "Display the complete zetetic cosmology",
"image_prompt": "cartoon cross-section of the flat earth: pizza disk floating on wavy primordial waters, tiny sun and moon close overhead, solid firmament dome with painted star dots, tiny gold crown as a star, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "the earth plate rocks slightly, creating ripples, sun and moon bob; mood: grand ridiculous model",
"voiceover": {
"tone": "deadpan",
"pace": "slow",
"gender": "neutral",
"emphasis": "primordial waters"
}
},
{
"scene_id": "029",
"parent_lines": [
"According to Robottom, the Newtonian scientists had it wrong.",
"Not due to some conspiracy, mind you, but because they were arrogant and imaginative and could not prove their theories apart from thought experiments."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "According to Robottom, the Newtonian scientists had it wrong. Not due to some conspiracy, mind you, but because they were arrogant and imaginative and could not prove their theories apart from thought experiments.",
"visual_goal": "Robottom pointing mockingly at a Newtonian scientist",
"image_prompt": "CHAR_001 pointing and laughing at CHAR_002 who holds a globe and looks furious, thought bubbles with nonsensical squiggles above CHAR_002, tiny gold crown on CHAR_001 pointing finger, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001's laughing head wobbles, CHAR_002's steam puffs increase; mood: mocking authority",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "arrogant"
}
},
{
"scene_id": "030",
"parent_lines": [
"Meanwhile, Robotam's philosophy, which he called Zatetic astronomy, relied on experiments that anyone could replicate at home.",
"This was, of course, hogwash.",
"Astronomers of the time had plenty of hard evidence to back up their claims, but it often relied on math that was difficult for lay people to understand."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Meanwhile, Robotam's philosophy, which he called Zatetic astronomy, relied on experiments that anyone could replicate at home. This was, of course, hogwash. Astronomers of the time had plenty of hard evidence to back up their claims, but it often relied on math that was difficult for lay people to understand.",
"visual_goal": "Household items arranged as a zetetic experiment vs complex equations",
"image_prompt": "cartoon kitchen table with a DIY experiment (a bowl of water and a stick), contrasted with a blackboard full of complicated gibberish equations, CHAR_001 proudly stands beside the table, tiny gold crown on the stick, CHAR_002 scratching head at the blackboard, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "the kitchen experiment wobbles cutely, the blackboard equations swirl into chaos; mood: simple versus complex",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "hogwash"
}
},
{
"scene_id": "031",
"parent_lines": [
"Ironically, Robottom relied on this same weakness to argue for his theories.",
"He threw a lot of math and diagrams at his audience that were hard to follow or refute, and he packaged it all in an anti- elite language, which would appeal to the common audience member."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Ironically, Robottom relied on this same weakness to argue for his theories. He threw a lot of math and diagrams at his audience that were hard to follow or refute, and he packaged it all in an anti- elite language, which would appeal to the common audience member.",
"visual_goal": "Robottom overwhelming the audience with confusing charts",
"image_prompt": "CHAR_001 standing beside an easel covered in dizzying charts and curly lines, audience members with spiral eyes and sweat drops, tiny gold crown on the easel corner, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "charts spin and twist, audience swirls; mood: confusion tactic",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "anti-elite"
}
},
{
"scene_id": "032",
"parent_lines": [
"After all, this was still very much an era of the gentleman astronomer.",
"Formal degrees and even the term science were not yet widely used, and the field was basically a playground for the rich upper class men like Newton who didn't have to work to support themselves."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "After all, this was still very much an era of the gentleman astronomer. Formal degrees and even the term science were not yet widely used, and the field was basically a playground for the rich upper class men like Newton who didn't have to work to support themselves.",
"visual_goal": "Rich men in fancy clothes playing with telescopes",
"image_prompt": "cartoon wealthy men in powdered wigs and coats playing with a giant brass telescope like a toy, CHAR_001 watching from behind a fence looking annoyed, tiny gold crown on the telescope eyepiece, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "telescope swings around, rich men laugh; mood: class contrast",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "gentleman astronomer"
}
},
{
"scene_id": "033",
"parent_lines": [
"But he also pushed on another hot button topic.",
"Because while Robottom jabbed with math, diagrams, and supposed reputations of Newton's view of the world, his right hook was that his version of the world lined up with biblical literalism."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "But he also pushed on another hot button topic. Because while Robottom jabbed with math, diagrams, and supposed reputations of Newton's view of the world, his right hook was that his version of the world lined up with biblical literalism.",
"visual_goal": "Robottom holding a Bible and pointing to his flat earth diagram",
"image_prompt": "CHAR_001 holding an open cartoon Bible in one hand, other hand pointing to his flat earth pizza map, tiny gold crown bookmark in the Bible, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "Bible pages flip, CHAR_001 nods solemnly; mood: religious argument",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "biblical literalism"
}
},
{
"scene_id": "034",
"parent_lines": [
"In his talk, he said astronomers were not simply wrong.",
"They were attacking religion by contradicting biblical teachigns.",
"Then he closed the presentation with the idea that phosphorus could make you immortal."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "In his talk, he said astronomers were not simply wrong. They were attacking religion by contradicting biblical teachigns. Then he closed the presentation with the idea that phosphorus could make you immortal.",
"visual_goal": "Robottom delivering the close of his lecture, audience shocked",
"image_prompt": "CHAR_001 on stage, one hand holding a phosphorus bottle, the other pointing heavenward, audience members with drop-jawed expressions, tiny gold crown on the bottle, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera quickly zooms in on the bottle, audience gasps; mood: sensationalist close",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "immortal"
}
},
{
"scene_id": "035",
"parent_lines": [
"Robotam's first lecture was met with good reviews in the local paper. apart from the phosphorous part which was so derided that he never again promoted it in a flat earth lecture that of course would be spun off into its own separate business where he ran into trouble however was at his second lecture in the town of Burnley where during the post lecture debate someone asked him why ships disappeared from the bottom when sailing out to sea at this question he panicked then said he'd have a good answer in the second part of his lecture the next night and prompt ly skipped town."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Robotam's first lecture was met with good reviews in the local paper. apart from the phosphorous part which was so derided that he never again promoted it in a flat earth lecture that of course would be spun off into its own separate business where he ran into trouble however was at his second lecture in the town of Burnley where during the post lecture debate someone asked him why ships disappeared from the bottom when sailing out to sea at this question he panicked then said he'd have a good answer in the second part of his lecture the next night and prompt ly skipped town.",
"visual_goal": "Robottom sweating on stage, audience member asking about ships",
"image_prompt": "CHAR_001 on stage with a panicked expression, sweat drops flying, an audience member pointing out a window at a sailing ship, tiny gold crown teetering on CHAR_001's head, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "sweat drops multiply, CHAR_001 looks around frantically, ship outside sinks behind horizon; mood: caught off guard",
"voiceover": {
"tone": "dramatic",
"pace": "fast",
"gender": "neutral",
"emphasis": "skipped town"
}
},
{
"scene_id": "036",
"parent_lines": [
"The local paper then recorded the audience jeering when he didn't show up the next day, joking that Parallax had obviously slipped off the ice edge of his flat disc and would not be seen until he peeped up on the other side."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "The local paper then recorded the audience jeering when he didn't show up the next day, joking that Parallax had obviously slipped off the ice edge of his flat disc and would not be seen until he peeped up on the other side.",
"visual_goal": "Empty stage with an ice edge, the audience laughing",
"image_prompt": "cartoon empty lecture stage with an icy edge, audience pointing and laughing, tiny gold crown sliding off the ice edge, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "crown slides off stage, audience laughter bubbles appear; mood: ridicule",
"voiceover": {
"tone": "playful",
"pace": "normal",
"gender": "neutral",
"emphasis": "slipped off"
}
},
{
"scene_id": "037",
"parent_lines": [
"By his next outing, he had researched the most common counterarguments to his theory and rehearsed quick and more importantly, often humorous comebacks to every single one.",
"These two were of course unsupported nonsense, but it was the fact that he was entertaining and appeared knowledgeable that made him to a lay person watching seem like he knew more than his opponents."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "By his next outing, he had researched the most common counterarguments to his theory and rehearsed quick and more importantly, often humorous comebacks to every single one. These two were of course unsupported nonsense, but it was the fact that he was entertaining and appeared knowledgeable that made him to a lay person watching seem like he knew more than his opponents.",
"visual_goal": "Robottom with a script of comebacks, audience laughing",
"image_prompt": "CHAR_001 holding a cue card with funny faces drawn (no text), audience laughing, CHAR_002 in back row fuming, tiny gold crown on the cue card, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001 flips through cards, audience laugh, CHAR_002's steam increases; mood: showmanship over substance",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "entertaining"
}
},
{
"scene_id": "038",
"parent_lines": [
"He developed other strategies as well.",
"Like when questioners pressed him too hard, he'd claim they were being selfish and taking up too much time from other people who wanted to speak."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "He developed other strategies as well. Like when questioners pressed him too hard, he'd claim they were being selfish and taking up too much time from other people who wanted to speak.",
"visual_goal": "Robottom pointing at a watch, silencing a questioner",
"image_prompt": "CHAR_001 tapping an oversized pocket watch, a cartoon questioner with a deflated balloon head, other audience members nodding impatiently, tiny gold crown on the watch chain, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "watch ticks loudly, questioner shrinks, crowd nods faster; mood: deflection",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "selfish"
}
},
{
"scene_id": "039",
"parent_lines": [
"When he did not have a satisfactory answer, he would pivot to a different topic entirely or turn questions around and challenge the questioner to name statistics that he'd memorized.",
"He'd ask them to prove there wasn't an ice wall and throw out too many falsehoods to refute, not to mention subtly making fun of Newtonian proofs by using words like rotundity to make the idea seem ridiculous."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "When he did not have a satisfactory answer, he would pivot to a different topic entirely or turn questions around and challenge the questioner to name statistics that he'd memorized. He'd ask them to prove there wasn't an ice wall and throw out too many falsehoods to refute, not to mention subtly making fun of Newtonian proofs by using words like rotundity to make the idea seem ridiculous.",
"visual_goal": "Robottom dodging questions like a boxer",
"image_prompt": "CHAR_001 in a boxing ring, dodging a barrage of question-mark punches, a glove labeled 'rotundity' swings at him, tiny gold crown on his head bouncing, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "question marks fly, CHAR_001 ducks and weaves, glove with 'rotundity' hits his nose comically; mood: evasive tactics",
"voiceover": {
"tone": "deadpan",
"pace": "fast",
"gender": "neutral",
"emphasis": "rotundity"
}
},
{
"scene_id": "040",
"parent_lines": [
"Crucially though, through all this nonsense, Robottom was unfailingly polite and kept his tone even, which granted him more and more authority with the audience, as his opponents, who increasingly included actual scientists, navigators, and sailors became frustrated and angry as he piled on disingenuous arguments."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "Crucially though, through all this nonsense, Robottom was unfailingly polite and kept his tone even, which granted him more and more authority with the audience, as his opponents, who increasingly included actual scientists, navigators, and sailors became frustrated and angry as he piled on disingenuous arguments.",
"visual_goal": "Polite Robottom vs angry scientist",
"image_prompt": "CHAR_001 smirking calmly, CHAR_002 red-faced with steam and fists clenched, audience looking at CHAR_002 with disapproval, tiny gold crown on CHAR_001 tie, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001's calm smile grows, CHAR_002's steam intensifies, audience shifts toward CHAR_001; mood: manufactured authority",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "polite"
}
},
{
"scene_id": "041",
"parent_lines": [
"But this growing fame also meant that Parallax's opponents leveled up as well.",
"By the 1860s, people were writing the astronomer royal to get reputations of his ideas.",
"And in Greenwich, the center of British navigation science and a haven for sailors who had actually been to the southern oceans, they challenged him to the experiment at Plymouth from the start of this episode."
],
"beat_index": 1,
"section": "rising",
"duration": 5,
"narration": "But this growing fame also meant that Parallax's opponents leveled up as well. By the 1860s, people were writing the astronomer royal to get reputations of his ideas. And in Greenwich, the center of British navigation science and a haven for sailors who had actually been to the southern oceans, they challenged him to the experiment at Plymouth from the start of this episode.",
"visual_goal": "A letter to the astronomer royal, then the Plymouth challenge",
"image_prompt": "cartoon quill pen writing a letter to a royal figure, then a map of Plymouth with telescope icon, CHAR_001 looking slightly worried, tiny gold crown as the seal on the letter, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "letter flies to the royal, map zooms to Plymouth, CHAR_001 gulps; mood: escalating stakes",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "challenged"
}
},
{
"scene_id": "042",
"parent_lines": [
"The stakes were this.",
"The Newtonians argued that with their calculations, the lighthouse would be just over the edge of the curvature and with atmospheric refraction accounted for, the whole lighthouse would be visible from the cliff, but only the lamp should be visible from the rocks."
],
"beat_index": 1,
"section": "climax",
"duration": 5,
"narration": "The stakes were this. The Newtonians argued that with their calculations, the lighthouse would be just over the edge of the curvature and with atmospheric refraction accounted for, the whole lighthouse would be visible from the cliff, but only the lamp should be visible from the rocks.",
"visual_goal": "Diagram showing lighthouse from cliff and rocks",
"image_prompt": "cartoon split diagram of a lighthouse: from cliff view showing full lighthouse, from rocks view showing only the lamp, tiny gold crown placed as a marker on the cliff, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "camera transitions from cliff to rock view, the lower part of lighthouse fades; mood: prediction",
"voiceover": {
"tone": "calm",
"pace": "slow",
"gender": "neutral",
"emphasis": "stakes"
}
},
{
"scene_id": "043",
"parent_lines": [
"Parallax insisted the entire lighthouse would be visible from both perspectives."
],
"beat_index": 1,
"section": "climax",
"duration": 4,
"narration": "Parallax insisted the entire lighthouse would be visible from both perspectives.",
"visual_goal": "Parallax confidently stating his position",
"image_prompt": "CHAR_001 arms crossed, smug smile, standing on the cliff with the lighthouse behind him fully visible, tiny gold crown on his confident head, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001 nods decisively, lighthouse shines; mood: overconfidence",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "insisted"
}
},
{
"scene_id": "044",
"parent_lines": [
"Except neither happened because atmospheric conditions that day meant that the refraction was actually less than normal, meaning only half the lamp was visible.",
"Yeah, the lighthouse was actually further obscured by the curvature than the Newtonians calculated and Parallax was more wrong."
],
"beat_index": 1,
"section": "climax",
"duration": 5,
"narration": "Except neither happened because atmospheric conditions that day meant that the refraction was actually less than normal, meaning only half the lamp was visible. Yeah, the lighthouse was actually further obscured by the curvature than the Newtonians calculated and Parallax was more wrong.",
"visual_goal": "The actual view: only half the lamp visible",
"image_prompt": "cartoon view through a telescope showing only the top half of a lighthouse lamp, foggy conditions, CHAR_002 looking shocked, CHAR_001 facepalms, tiny gold crown falling off the lighthouse, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "telescope image wavers, half-lamp flickers, CHAR_002 jaw drops; mood: unexpected result",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "more wrong"
}
},
{
"scene_id": "045",
"parent_lines": [
"Despite this, Parallax turned to the watching crowd and declared in a victorious tone that because the Newtonians had miscalculated, clearly they had proved that their models were all faulty and no one should trust them."
],
"beat_index": 1,
"section": "climax",
"duration": 5,
"narration": "Despite this, Parallax turned to the watching crowd and declared in a victorious tone that because the Newtonians had miscalculated, clearly they had proved that their models were all faulty and no one should trust them.",
"visual_goal": "Parallax spinning the outcome to the crowd",
"image_prompt": "CHAR_001 facing the crowd with arms raised triumphantly, CHAR_002 behind him face-palming, a giant spinning sign that says 'FAULTY' (no text, just a cracked model), tiny gold crown on CHAR_001's head, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "sign spins rapidly, crowd nods uncertainly, CHAR_001 grins wide; mood: manipulation",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "victorious tone"
}
},
{
"scene_id": "046",
"parent_lines": [
"He then went on to publish his monumental zedic astronomy book the next year titled Give me strength.",
"Zetic astronomy.",
"The Earth is not a globe.",
"An experimental inquiry into the true figure of the Earth, proving it a plane without axial or orbital motion, and the only material world in the universe.",
"34 words, two colons, two exclamation points, and zero self-awareness."
],
"beat_index": 1,
"section": "climax",
"duration": 5,
"narration": "He then went on to publish his monumental zedic astronomy book the next year titled Give me strength. Zetic astronomy. The Earth is not a globe. An experimental inquiry into the true figure of the Earth, proving it a plane without axial or orbital motion, and the only material world in the universe. 34 words, two colons, two exclamation points, and zero self-awareness.",
"visual_goal": "The ridiculously titled book cover",
"image_prompt": "cartoon book cover with an ornate blank title space, CHAR_001 holding the book proudly, floating punctuation marks (colon, exclamation) circling his head, tiny gold crown on the book spine, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "book spins to show thickness, punctuation marks pop, CHAR_001 bows; mood: absurd publication",
"voiceover": {
"tone": "deadpan",
"pace": "fast",
"gender": "neutral",
"emphasis": "zero self-awareness"
}
},
{
"scene_id": "047",
"parent_lines": [
"It was a bestseller, and though many copies were likely bought as a gag gift, it continues to this day to influence the flat earth movement.",
"Parallax was refuted again and again, but he spawned a group of rabid disciples who published zetic magazines, argued on his behalf and frequently went beyond his genial nature to stage personal attacks in his name, even lawsuits."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "It was a bestseller, and though many copies were likely bought as a gag gift, it continues to this day to influence the flat earth movement. Parallax was refuted again and again, but he spawned a group of rabid disciples who published zetic magazines, argued on his behalf and frequently went beyond his genial nature to stage personal attacks in his name, even lawsuits.",
"visual_goal": "Bestseller list with the book, angry disciples",
"image_prompt": "cartoon bestseller list with a blank top slot, CHAR_001 on shoulders of rabid followers throwing lawsuits papers, tiny gold crown on the bestseller list, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "followers surge forward, papers fly, CHAR_001 looks uneasy; mood: legacy out of control",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "lawsuits"
}
},
{
"scene_id": "048",
"parent_lines": [
"At other times, he agreed to further quote experiments against Newtonians, but developed a strategy where he'd show up late, then pull out, claiming that they had breached the rules by setting up the equipment without him."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "At other times, he agreed to further quote experiments against Newtonians, but developed a strategy where he'd show up late, then pull out, claiming that they had breached the rules by setting up the equipment without him.",
"visual_goal": "Robottom sneaking away from an experiment setup",
"image_prompt": "cartoon CHAR_001 tiptoeing away from a fully assembled experiment, CHAR_002 shaking fist, a broken rule sheet on the ground (blank paper), tiny gold crown on CHAR_001's coat tail, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001 sneaks off camera, CHAR_002 stomps foot, rule sheet flutters; mood: dirty tricks",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "show up late"
}
},
{
"scene_id": "049",
"parent_lines": [
"Meanwhile, he drifted back into pseudocience medicine, claiming to be a doctor again in the 1870s and producing a drink called Dr. Burley's syrup of free phosphorus, a type of early soda he marketed through Zedetic magazines, becoming a rich man before his phosphate regimen apparently failed him, and he died in 1884 at the age of 68.",
"Eagle-eyed viewers will note that is quite a bit under immortal."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "Meanwhile, he drifted back into pseudocience medicine, claiming to be a doctor again in the 1870s and producing a drink called Dr. Burley's syrup of free phosphorus, a type of early soda he marketed through Zedetic magazines, becoming a rich man before his phosphate regimen apparently failed him, and he died in 1884 at the age of 68. Eagle-eyed viewers will note that is quite a bit under immortal.",
"visual_goal": "Robottom's old age, soda bottle, tombstone",
"image_prompt": "cartoon progression: CHAR_001 older, holding a bottle of glowing soda, then a tombstone with 1884 and a tiny gold crown on top, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "CHAR_001 aging rapidly, soda bottle fizzles, tombstone appears; mood: ironic death",
"voiceover": {
"tone": "deadpan",
"pace": "slow",
"gender": "neutral",
"emphasis": "under immortal"
}
},
{
"scene_id": "050",
"parent_lines": [
"Even in the 1850s, when he left his wife to marry the 15-year-old daughter of his maid, he was never fully discredited.",
"They had 14 children, only four of which survived to adulthood, possibly, according to one account, because he gave them all his own quack medicines."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "Even in the 1850s, when he left his wife to marry the 15-year-old daughter of his maid, he was never fully discredited. They had 14 children, only four of which survived to adulthood, possibly, according to one account, because he gave them all his own quack medicines.",
"visual_goal": "Scandalous wedding, tiny gravestones",
"image_prompt": "cartoon wedding with CHAR_001 and a young bride, a maid crying in background, then 14 small children silhouettes with four larger ones, tiny gold crown on the wedding cake, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "wedding scene fades to family portrait, four figures fade out; mood: dark family history",
"voiceover": {
"tone": "deadpan",
"pace": "normal",
"gender": "neutral",
"emphasis": "quack medicines"
}
},
{
"scene_id": "051",
"parent_lines": [
"Sadly, however, Robottom is not the end of the flat earth story.",
"Indeed, the belief would mutate as humans reached the South Pole. flight and space.",
"With each step, it became more conspiratorial as the need to explain away mounting evidence became greater."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "Sadly, however, Robottom is not the end of the flat earth story. Indeed, the belief would mutate as humans reached the South Pole. flight and space. With each step, it became more conspiratorial as the need to explain away mounting evidence became greater.",
"visual_goal": "Evolution of flat earth conspiracy through the ages",
"image_prompt": "cartoon timeline: explorers at South Pole, airplane, astronaut, each with more tinfoil hats, tiny gold crown on the tinfoil hat of the final astronaut, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "timeline scrolls, tinfoil hats grow larger, mood: escalating conspiracy",
"voiceover": {
"tone": "dramatic",
"pace": "normal",
"gender": "neutral",
"emphasis": "conspiratorial"
}
},
{
"scene_id": "052",
"parent_lines": [
"But trying to think about it another way, maybe we should all actually keep robot in mind as we use YouTube to help us remember that someone with the right techniques, the right rhetoric, well-honed arguments, and an appeal to your own wish to attack your perceived opponents can literally convince any of us that the earth is flat."
],
"beat_index": 1,
"section": "falling",
"duration": 5,
"narration": "But trying to think about it another way, maybe we should all actually keep robot in mind as we use YouTube to help us remember that someone with the right techniques, the right rhetoric, well-honed arguments, and an appeal to your own wish to attack your perceived opponents can literally convince any of us that the earth is flat.",
"visual_goal": "YouTube screen with a flat earth video thumbnail",
"image_prompt": "cartoon YouTube interface on a screen, a flat earth video thumbnail with CHAR_001 silhouette, tiny gold crown as the play button, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "screen glows, thumbnail pulses, reflection of viewer appears; mood: cautionary tale",
"voiceover": {
"tone": "dramatic",
"pace": "slow",
"gender": "neutral",
"emphasis": "convince any of us"
}
},
{
"scene_id": "053",
"parent_lines": [
"But if you, like me, are sick of wellspoken charlatans on the internet selling hype with no follow-through, then allow me to introduce you to a group that is the exact opposite of that, whose welldocumented deeds are helping bring back endangered species, protect our oceans, and restore forests on our very round planet."
],
"beat_index": 1,
"section": "outro",
"duration": 5,
"narration": "But if you, like me, are sick of wellspoken charlatans on the internet selling hype with no follow-through, then allow me to introduce you to a group that is the exact opposite of that, whose welldocumented deeds are helping bring back endangered species, protect our oceans, and restore forests on our very round planet.",
"visual_goal": "Transition to Planet Wild: round Earth with animals",
"image_prompt": "cartoon round Earth globe with healthy forests, colorful fish, and smiling endangered animals, tiny gold crown on the North Pole, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "globe rotates happily, animals dance, mood: positive turn",
"voiceover": {
"tone": "warm",
"pace": "normal",
"gender": "neutral",
"emphasis": "round planet"
}
},
{
"scene_id": "054",
"parent_lines": [
"Planet Wild is a global community of over 17,000 individuals that want to give back to nature by funding frontline ecosystem restoration missions where it really matters.",
"Think of it as a kind of crowdfunding for nature.",
"Here's how it works.",
"Each month, Planet Wild partners with a different organization and funds projects that will better our shared orbshaped world."
],
"beat_index": 1,
"section": "outro",
"duration": 5,
"narration": "Planet Wild is a global community of over 17,000 individuals that want to give back to nature by funding frontline ecosystem restoration missions where it really matters. Think of it as a kind of crowdfunding for nature. Here's how it works. Each month, Planet Wild partners with a different organization and funds projects that will better our shared orbshaped world.",
"visual_goal": "Crowd of people around a globe, donating",
"image_prompt": "cartoon crowd of tiny smiling people holding hearts and coins, placing them into a globe slot, a tiny gold crown as the donation slot, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "coins pour into globe, people multiply, globe glows; mood: community funding",
"voiceover": {
"tone": "warm",
"pace": "normal",
"gender": "neutral",
"emphasis": "17,000"
}
},
{
"scene_id": "055",
"parent_lines": [
"Then they post a video to YouTube showing the progress and the results so you can see what your contribution helped achieve. aka they don't just highlight problems and stop there.",
"They provide solutions which is why I support planet wild because I can see the direct impact my contribution has on preserving nature and protecting our ecosystems.",
"And all of you fine friendos can help yourselves by joining me in becoming a member of Planet Wild today.",
"You can give whatever amount is right for you, big or small, because every dollar does count.",
"Simply click the link below or scan the QR code right over here and use my code extra history12 to get started.",
"And bonus, the first 100 people that sign up that way will get to see it for free in their first month.",
"Yeah, you'll immediately start having an impact and get to see the result in less than 30 days right here on YouTube.",
"So to join Planet Wild and their mission to save our spherical planet, click here.",
"And then to see Planet Wild in action for yourself, check out their latest project, cleaning up Mumbai's plastic river here."
],
"beat_index": 1,
"section": "outro",
"duration": 5,
"narration": "Then they post a video to YouTube showing the progress and the results so you can see what your contribution helped achieve. aka they don't just highlight problems and stop there. They provide solutions which is why I support planet wild because I can see the direct impact my contribution has on preserving nature and protecting our ecosystems. And all of you fine friendos can help yourselves by joining me in becoming a member of Planet Wild today. You can give whatever amount is right for you, big or small, because every dollar does count. Simply click the link below or scan the QR code right over here and use my code extra history12 to get started. And bonus, the first 100 people that sign up that way will get to see it for free in their first month. Yeah, you'll immediately start having an impact and get to see the result in less than 30 days right here on YouTube. So to join Planet Wild and their mission to save our spherical planet, click here. And then to see Planet Wild in action for yourself, check out their latest project, cleaning up Mumbai's plastic river here.",
"visual_goal": "Planet Wild video results montage",
"image_prompt": "cartoon split screen showing a polluted river transforming into clean, animals returning, tiny gold crown on the clean riverbank, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "river cleans up, animals appear, camera pans to QR code placeholder (blank square), mood: inspiring call to action",
"voiceover": {
"tone": "warm",
"pace": "normal",
"gender": "neutral",
"emphasis": "join"
}
},
{
"scene_id": "056",
"parent_lines": [
"The largest legendary thanks to Zelads Architectures Thomas Tate, Lotus Wolf, Joseph Bla, Hunter Z, Friso Van Santin, Dominic Valenciana, and Angela Valenciana for being legendary patrons.",
"Thank you all a million."
],
"beat_index": 1,
"section": "outro",
"duration": 5,
"narration": "The largest legendary thanks to Zelads Architectures Thomas Tate, Lotus Wolf, Joseph Bla, Hunter Z, Friso Van Santin, Dominic Valenciana, and Angela Valenciana for being legendary patrons. Thank you all a million.",
"visual_goal": "Patrons' names scrolling with a crown",
"image_prompt": "cartoon credits scroll with glowing stars (no readable names, just star icons), a giant golden crown at the top, thick bold black outlines, flat vector colors, large head small body, no text",
"img2video_prompt": "stars rise upward, crown sparkles, mood: gratitude",
"voiceover": {
"tone": "warm",
"pace": "slow",
"gender": "neutral",
"emphasis": "legendary patrons"
}
}
]
} |