-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (104 loc) · 5.26 KB
/
index.html
File metadata and controls
114 lines (104 loc) · 5.26 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="Transform PDF presentations into cinematic narrated videos with AI. Powered by local browser inference, high-quality TTS, and programmatic video rendering. Free and open-source." />
<meta name="keywords"
content="PDF to video, AI video generator, presentation to video, text to speech, automated video creation, slide to video, video editor, AI presentation" />
<meta name="author" content="IslandApps" />
<meta name="theme-color" content="#000000" />
<link rel="canonical" href="https://origami.techmitten.com/" />
<!-- Roboto Font for Professional UI -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://origami.techmitten.com/" />
<meta property="og:title" content="Origami AI - PDF to Video Creator" />
<meta property="og:description"
content="Transform PDF presentations into cinematic narrated videos with AI. Powered by local browser inference, high-quality TTS, and programmatic video rendering." />
<meta property="og:image" content="https://origami.techmitten.com/og.webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Origami AI - PDF to Video Creator" />
<meta property="og:site_name" content="Origami AI" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Origami AI - PDF to Video Creator" />
<meta name="twitter:description"
content="Transform PDF presentations into cinematic narrated videos with AI. Powered by local browser inference, high-quality TTS, and programmatic video rendering." />
<meta name="twitter:image" content="https://origami.techmitten.com/og.webp" />
<meta name="twitter:image:alt" content="Origami AI - PDF to Video Creator" />
<!-- Additional SEO -->
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="application-name" content="Origami AI" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Origami AI" />
<meta name="revisit-after" content="7 days" />
<meta name="rating" content="General" />
<meta name="category" content="Technology, AI, Video" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Origami AI",
"url": "https://origami.techmitten.com/",
"description": "Transform PDF presentations into cinematic narrated videos with AI. Powered by local browser inference, high-quality TTS, and programmatic video rendering. Free and open-source.",
"applicationCategory": "MultimediaApplication",
"applicationSubCategory": "VideoEditingApplication",
"operatingSystem": "Any",
"inLanguage": "en",
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"screenshot": {
"@type": "ImageObject",
"url": "https://origami.techmitten.com/og.webp",
"width": 1200,
"height": 630
},
"featureList": [
"PDF to Presentation conversion",
"AI-powered script generation",
"High-quality Text-to-Speech",
"Programmatic video rendering",
"Interactive slide editor",
"Background music mixing with auto-ducking",
"Video normalization to YouTube standards"
],
"browserRequirements": "Requires JavaScript. Requires WebGPU for local AI inference.",
"softwareVersion": "1.0.0",
"author": {
"@type": "Organization",
"name": "IslandApps",
"url": "https://islandapps.dev"
},
"license": "https://opensource.org/licenses/MIT",
"sameAs": [
"https://github.com/IslandApps/Origami-AI"
]
}
</script>
<title>Origami AI - PDF to Video Creator</title>
<script defer src="https://umami.techmitten.com/script.js" data-website-id="f03244ed-0b85-4800-8425-fb12e74bdd09"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>