-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (136 loc) · 6.53 KB
/
Copy pathindex.html
File metadata and controls
147 lines (136 loc) · 6.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Video Generator - Free Online Tool</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>AI Video Generator</h1>
<p>Generate stunning AI videos from text - 100% free, no signup, no token needed</p>
<p class="branding">Created by Siva Aadhavan Tech Solution</p>
</div>
</header>
<main class="container">
<div id="app-content">
<div id="setup-panel" class="setup-panel">
<h2>Generate AI Video from Text</h2>
<div class="form-group">
<label for="video-prompt">Describe your video:</label>
<textarea id="video-prompt" rows="4" placeholder="A beautiful sunset over mountains with clouds moving, cinematic lighting, ocean waves, space galaxy, cyberpunk city..."></textarea>
</div>
<div class="form-row">
<div class="form-group">
<label for="video-style">Style:</label>
<select id="video-style">
<option value="cinematic">Cinematic</option>
<option value="anime">Anime</option>
<option value="realistic">Realistic</option>
<option value="fantasy">Fantasy</option>
<option value="3d">3D Render</option>
<option value="watercolor">Watercolor</option>
<option value="cyberpunk">Cyberpunk</option>
<option value="oil">Oil Painting</option>
<option value="pixel">Pixel Art</option>
<option value="comic">Comic Book</option>
</select>
</div>
<div class="form-group">
<label for="num-frames">Frames:</label>
<select id="num-frames">
<option value="8">8 (Fast)</option>
<option value="12" selected>12 (Normal)</option>
<option value="16">16 (Smooth)</option>
</select>
</div>
<div class="form-group">
<label for="resolution">Resolution:</label>
<select id="resolution">
<option value="768x512">768x512 (Widescreen)</option>
<option value="512x512">512x512 (Square)</option>
<option value="512x768">512x768 (Portrait)</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="transition">Effect:</label>
<select id="transition">
<option value="zoom">Zoom In</option>
<option value="pan">Pan Right</option>
<option value="fade">Crossfade</option>
<option value="none">None</option>
</select>
</div>
<div class="form-group">
<label for="fps">Frame Rate:</label>
<select id="fps">
<option value="3">3 FPS</option>
<option value="6" selected>6 FPS</option>
<option value="10">10 FPS</option>
</select>
</div>
<div class="form-group">
<label for="model">AI Model:</label>
<select id="model">
<option value="flux">Flux (Best)</option>
<option value="turbo">Turbo (Fast)</option>
</select>
</div>
</div>
<button class="btn primary" id="generate-btn">Generate AI Video</button>
<div class="features-grid">
<div class="feature-card">
<span class="feature-icon">AI</span>
<strong>AI-Powered</strong>
<p>Generates unique AI images from your prompt</p>
</div>
<div class="feature-card">
<span class="feature-icon">FREE</span>
<strong>100% Free</strong>
<p>No API key, no signup, no limits</p>
</div>
<div class="feature-card">
<span class="feature-icon">FAST</span>
<strong>Fast</strong>
<p>Video ready in 30-60 seconds</p>
</div>
<div class="feature-card">
<span class="feature-icon">PVT</span>
<strong>Private</strong>
<p>All processing in your browser</p>
</div>
</div>
</div>
<div id="progress-section" class="hidden">
<h3 id="progress-title">Generating AI Video...</h3>
<div class="progress-bar">
<div id="progress-fill" class="progress-fill"></div>
</div>
<p id="progress-text">0%</p>
<div id="progress-stages"></div>
</div>
<div id="frames-preview" class="hidden">
<h3>AI Generated Frames</h3>
<div id="frames-grid" class="frames-grid"></div>
</div>
<div id="output-section" class="hidden">
<h3>Your AI Video is Ready!</h3>
<video id="output-video" controls playsinline></video>
<div class="output-actions">
<a id="download-btn" class="btn primary" download>Download Video</a>
<button class="btn secondary" id="new-video-btn">Create Another</button>
</div>
</div>
</div>
</main>
<footer>
<p>Created by Siva Aadhavan Tech Solution | Powered by Pollinations AI</p>
</footer>
<canvas id="render-canvas" style="display:none;"></canvas>
<script src="app.js"></script>
</body>
</html>