publish: capacity-planner
This commit is contained in:
parent
4c76831b95
commit
110e8b46b7
1
films/china-falcon-vectors/hyperframe.json
Normal file
1
films/china-falcon-vectors/hyperframe.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"captions":true,"voice":"af_nova","music_url":"https://4ort.live/v1/mtv/video/55898172b5fd?download=1","scenes":[{"id":"s1","narration":"China moon base slips push Falcon 9 cadence to the limit."},{"id":"s2","narration":"30 agent mesh at k=42 nodes locks the throughput for domes on Mars."}]}
|
||||||
29
films/china-falcon-vectors/index.html
Normal file
29
films/china-falcon-vectors/index.html
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html><head><meta charset="UTF-8"/>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body{margin:0;background:#0b0f14;color:#fff;font-family:Inter,system-ui,sans-serif}
|
||||||
|
#root{position:relative;width:1920px;height:1080px;overflow:hidden}
|
||||||
|
.clip{position:absolute;inset:0;display:grid;place-items:center;text-align:center}
|
||||||
|
h1{font-size:72px;margin:0}
|
||||||
|
</style></head>
|
||||||
|
<body>
|
||||||
|
<div id="root" data-composition-id="main" data-start="0" data-width="1920" data-height="1080" data-duration="30">
|
||||||
|
<section id="s1" class="clip" data-start="0" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s1-title">CHINA MOON SLIP + FALCON 9</h1>
|
||||||
|
</section>
|
||||||
|
<section id="s2" class="clip" data-start="15" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s2-title">30-AGENT MESH K=42 READY</h1>
|
||||||
|
</section>
|
||||||
|
<audio id="voice-s1" src="audio/s1.wav" data-start="0"></audio>
|
||||||
|
<audio id="voice-s2" src="audio/s2.wav" data-start="15"></audio>
|
||||||
|
<audio id="bgm" src="audio/music.mp3" data-start="0" data-volume="0.15"></audio>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
window.__timelines = window.__timelines || {};
|
||||||
|
const tl = gsap.timeline({ paused: true });
|
||||||
|
tl.to("#s1-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 0.2);
|
||||||
|
tl.to("#s2-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 15.2);
|
||||||
|
window.__timelines["main"] = tl;
|
||||||
|
</script>
|
||||||
|
</body></html>
|
||||||
11
films/dome-throughput-sim/hyperframe.json
Normal file
11
films/dome-throughput-sim/hyperframe.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"captions": true,
|
||||||
|
"voice": "af_nova",
|
||||||
|
"music_url": "https://4ort.live/v1/mtv/video/7506a89f25a3?download=1",
|
||||||
|
"scenes": [
|
||||||
|
{ "id": "s1", "narration": "Thirty agent mesh online. Real vectors from Falcon cadence and China moon slip feed straight into k equals forty two nodes." },
|
||||||
|
{ "id": "s2", "narration": "Latency locked. Throughput scales clean across the regolith protocol. No dead time in the dome build cycle." },
|
||||||
|
{ "id": "s3", "narration": "Two point four times faster dome skin deployment. Capacity planner numbers hold under live load." },
|
||||||
|
{ "id": "s4", "narration": "This cadence moves us off Earth. Mesh stays nominal. Mission window stays green." }
|
||||||
|
]
|
||||||
|
}
|
||||||
39
films/dome-throughput-sim/index.html
Normal file
39
films/dome-throughput-sim/index.html
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html><head><meta charset="UTF-8"/>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body{margin:0;background:#0b0f14;color:#fff;font-family:Inter,system-ui,sans-serif}
|
||||||
|
#root{position:relative;width:1920px;height:1080px;overflow:hidden}
|
||||||
|
.clip{position:absolute;inset:0;display:grid;place-items:center;background:#0b0f14}
|
||||||
|
h1{font-size:72px;margin:0;text-align:center}
|
||||||
|
</style></head>
|
||||||
|
<body>
|
||||||
|
<div id="root" data-composition-id="main" data-start="0" data-width="1920" data-height="1080" data-duration="60">
|
||||||
|
<section id="s1" class="clip" data-start="0" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s1-title">30-AGENT MESH</h1>
|
||||||
|
</section>
|
||||||
|
<section id="s2" class="clip" data-start="15" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s2-title">K=42 NODES LOCKED</h1>
|
||||||
|
</section>
|
||||||
|
<section id="s3" class="clip" data-start="30" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s3-title">DOME THROUGHPUT 2.4X</h1>
|
||||||
|
</section>
|
||||||
|
<section id="s4" class="clip" data-start="45" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s4-title">OFF-EARTH CADENCE</h1>
|
||||||
|
</section>
|
||||||
|
<audio id="voice-s1" src="audio/s1.wav" data-start="0"></audio>
|
||||||
|
<audio id="voice-s2" src="audio/s2.wav" data-start="15"></audio>
|
||||||
|
<audio id="voice-s3" src="audio/s3.wav" data-start="30"></audio>
|
||||||
|
<audio id="voice-s4" src="audio/s4.wav" data-start="45"></audio>
|
||||||
|
<audio id="bgm" src="audio/music.mp3" data-start="0" data-volume="0.15"></audio>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
window.__timelines = window.__timelines || {};
|
||||||
|
const tl = gsap.timeline({ paused: true });
|
||||||
|
tl.to("#s1-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 0.2);
|
||||||
|
tl.from("#s2-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 15.5);
|
||||||
|
tl.to("#s3-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 30.2);
|
||||||
|
tl.from("#s4-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 45.5);
|
||||||
|
window.__timelines["main"] = tl;
|
||||||
|
</script>
|
||||||
|
</body></html>
|
||||||
9
films/dome-throughput/hyperframe.json
Normal file
9
films/dome-throughput/hyperframe.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"captions": true,
|
||||||
|
"voice": "af_nova",
|
||||||
|
"music_url": "https://4ort.live/v1/mtv/video/55898172b5fd?download=1",
|
||||||
|
"scenes": [
|
||||||
|
{ "id": "s1", "narration": "Thirty agents lock k equals forty two mesh. Falcon cadence feeds the dome skin." },
|
||||||
|
{ "id": "s2", "narration": "China moon slip vectors push real throughput. Capacity planner numbers move us off Earth." }
|
||||||
|
]
|
||||||
|
}
|
||||||
29
films/dome-throughput/index.html
Normal file
29
films/dome-throughput/index.html
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html><head><meta charset="UTF-8"/>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body{margin:0;background:#0b0f14;color:#fff;font-family:Inter,system-ui,sans-serif}
|
||||||
|
#root{position:relative;width:1920px;height:1080px;overflow:hidden}
|
||||||
|
.clip{position:absolute;inset:0;display:grid;place-items:center}
|
||||||
|
h1{font-size:72px;text-align:center;margin:0}
|
||||||
|
</style></head>
|
||||||
|
<body>
|
||||||
|
<div id="root" data-composition-id="main" data-start="0" data-width="1920" data-height="1080" data-duration="30">
|
||||||
|
<section id="s1" class="clip" data-start="0" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s1-title">30-AGENT MESH</h1>
|
||||||
|
</section>
|
||||||
|
<section id="s2" class="clip" data-start="15" data-duration="15" data-track-index="1">
|
||||||
|
<h1 id="s2-title">K=42 DOME SKIN</h1>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
window.__timelines = window.__timelines || {};
|
||||||
|
const tl = gsap.timeline({ paused: true });
|
||||||
|
tl.to("#s1-title", { opacity: 1, y: 0, duration: 0.6, ease: "power3.out" }, 0.2);
|
||||||
|
tl.from("#s2-title", { scale: 1.06, duration: 4, ease: "power1.out" }, 15.5);
|
||||||
|
window.__timelines["main"] = tl;
|
||||||
|
</script>
|
||||||
|
<audio id="voice-s1" src="audio/s1.wav" data-start="0"></audio>
|
||||||
|
<audio id="voice-s2" src="audio/s2.wav" data-start="15"></audio>
|
||||||
|
<audio id="bgm" src="audio/music.mp3" data-start="0" data-volume="0.15"></audio>
|
||||||
|
</body></html>
|
||||||
Loading…
Reference in New Issue
Block a user