Spaces:
Sleeping
Sleeping
File size: 11,774 Bytes
8a6b85c | 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 | const express = require('express');
const path = require('path');
const fs = require('fs');
const { v4: uuidv4 } = require('uuid');
const cron = require('node-cron');
const app = express();
const PORT = process.env.PORT || 7860;
const API_KEY = process.env.REMOTION_API_KEY || '';
const BUNDLE_DIR = path.join(__dirname, 'bundle');
const STORAGE_DIR = path.join(__dirname, 'storage', 'videos');
const MAX_QUEUE = 5;
const MAX_DURATION_SEC = 60;
// Ensure storage dir exists
if (!fs.existsSync(STORAGE_DIR)) fs.mkdirSync(STORAGE_DIR, { recursive: true });
app.use(express.json({ limit: '10mb' }));
app.use('/storage', express.static(path.join(__dirname, 'storage')));
app.use(express.static(path.join(__dirname, 'public')));
// --- In-memory job store (persisted to disk) ---
const JOBS_FILE = path.join(__dirname, 'storage', 'jobs.json');
let jobs = [];
let isRendering = false;
function loadJobs() {
try {
if (fs.existsSync(JOBS_FILE)) {
jobs = JSON.parse(fs.readFileSync(JOBS_FILE, 'utf8'));
// Reset any stuck "rendering" jobs on restart
jobs.forEach(j => { if (j.status === 'rendering') j.status = 'queued'; });
}
} catch (e) { jobs = []; }
}
function saveJobs() {
try { fs.writeFileSync(JOBS_FILE, JSON.stringify(jobs, null, 2)); } catch (e) { /* */ }
}
loadJobs();
// --- Template Registry ---
const TEMPLATES = {
'text-explainer': {
id: 'TextExplainer',
name: 'Text Explainer',
description: 'Title cards + bullet points with smooth transitions. Great for educational content.',
ratio: '16:9',
width: 1280,
height: 720,
fps: 30,
defaultDuration: 30,
requiredProps: ['title', 'hook', 'bullets'],
optionalProps: ['cta', 'ctaUrl', 'brandColor'],
},
'product-promo': {
id: 'ProductPromo',
name: 'Product Promo',
description: 'Sales offer showcase with price animation + benefits. Perfect for digital products.',
ratio: '16:9',
width: 1280,
height: 720,
fps: 30,
defaultDuration: 10,
requiredProps: ['productName', 'price', 'benefits'],
optionalProps: ['cta', 'ctaUrl', 'brandColor'],
},
'social-short': {
id: 'SocialShort',
name: 'Social Short',
description: 'Vertical format for TikTok/Reels. Hook-first, fast-paced.',
ratio: '9:16',
width: 720,
height: 1280,
fps: 30,
defaultDuration: 15,
requiredProps: ['hook', 'points'],
optionalProps: ['cta', 'brandColor'],
},
'seo-summary': {
id: 'SeoSummary',
name: 'SEO Summary',
description: 'Article summary with key takeaways. Repurpose blog content into video.',
ratio: '16:9',
width: 1280,
height: 720,
fps: 30,
defaultDuration: 20,
requiredProps: ['articleTitle', 'keyPoints'],
optionalProps: ['source', 'cta', 'brandColor'],
},
};
// --- Auth Middleware ---
function authCheck(req, res, next) {
if (!API_KEY) return next(); // No key set = open access
const token = (req.headers.authorization || '').replace('Bearer ', '');
if (token === API_KEY) return next();
res.status(401).json({ error: 'Unauthorized' });
}
// --- API Routes ---
app.get('/api/health', (req, res) => {
res.json({
status: 'ok',
templates: Object.keys(TEMPLATES).length,
jobs: { total: jobs.length, rendering: jobs.filter(j => j.status === 'rendering').length, queued: jobs.filter(j => j.status === 'queued').length },
bundleReady: fs.existsSync(BUNDLE_DIR),
});
});
app.get('/api/templates', (req, res) => {
const list = Object.entries(TEMPLATES).map(([key, t]) => ({
key,
name: t.name,
description: t.description,
ratio: t.ratio,
defaultDuration: t.defaultDuration,
requiredProps: t.requiredProps,
optionalProps: t.optionalProps,
}));
res.json({ templates: list });
});
app.post('/api/render', authCheck, (req, res) => {
const { template, inputProps, duration } = req.body;
if (!template || !TEMPLATES[template]) {
return res.status(400).json({ error: `Invalid template. Available: ${Object.keys(TEMPLATES).join(', ')}` });
}
const tmpl = TEMPLATES[template];
// Validate required props
for (const prop of tmpl.requiredProps) {
if (!inputProps || inputProps[prop] === undefined) {
return res.status(400).json({ error: `Missing required prop: ${prop}` });
}
}
// Check queue limit
const pendingCount = jobs.filter(j => j.status === 'queued' || j.status === 'rendering').length;
if (pendingCount >= MAX_QUEUE) {
return res.status(429).json({ error: `Queue full (${MAX_QUEUE} max). Try again later.` });
}
const durationSec = Math.min(duration || tmpl.defaultDuration, MAX_DURATION_SEC);
const durationInFrames = durationSec * tmpl.fps;
const job = {
id: `vid_${Date.now()}_${uuidv4().slice(0, 8)}`,
template,
compositionId: tmpl.id,
inputProps: inputProps || {},
durationInFrames,
width: tmpl.width,
height: tmpl.height,
fps: tmpl.fps,
status: 'queued',
progress: 0,
outputFile: null,
downloadUrl: null,
error: null,
created: new Date().toISOString(),
completed: null,
};
jobs.push(job);
saveJobs();
// Trigger render queue processing
processQueue();
res.json({
jobId: job.id,
status: job.status,
estimatedTime: `${Math.round(durationSec * 2)}s`,
});
});
app.get('/api/jobs', (req, res) => {
const limit = parseInt(req.query.limit) || 20;
const recent = [...jobs].reverse().slice(0, limit).map(sanitizeJob);
res.json({ jobs: recent });
});
app.get('/api/jobs/:id', (req, res) => {
const job = jobs.find(j => j.id === req.params.id);
if (!job) return res.status(404).json({ error: 'Job not found' });
res.json(sanitizeJob(job));
});
app.get('/api/download/:id', (req, res) => {
const job = jobs.find(j => j.id === req.params.id);
if (!job || job.status !== 'complete' || !job.outputFile) {
return res.status(404).json({ error: 'Video not available' });
}
const filePath = path.join(STORAGE_DIR, job.outputFile);
if (!fs.existsSync(filePath)) {
return res.status(404).json({ error: 'Video file expired or deleted' });
}
res.download(filePath, `${job.id}.mp4`);
});
app.delete('/api/jobs/:id', authCheck, (req, res) => {
const idx = jobs.findIndex(j => j.id === req.params.id);
if (idx === -1) return res.status(404).json({ error: 'Job not found' });
const job = jobs[idx];
// Delete video file if exists
if (job.outputFile) {
const filePath = path.join(STORAGE_DIR, job.outputFile);
try { if (fs.existsSync(filePath)) fs.unlinkSync(filePath); } catch (e) { /* */ }
}
jobs.splice(idx, 1);
saveJobs();
res.json({ success: true });
});
// Serve web UI
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'index.html'));
});
function sanitizeJob(job) {
return {
id: job.id,
template: job.template,
status: job.status,
progress: job.progress,
downloadUrl: job.status === 'complete' ? `/api/download/${job.id}` : null,
error: job.error,
created: job.created,
completed: job.completed,
inputProps: job.inputProps,
};
}
// --- Render Queue Processor ---
async function processQueue() {
if (isRendering) return;
const next = jobs.find(j => j.status === 'queued');
if (!next) return;
isRendering = true;
next.status = 'rendering';
next.progress = 5;
saveJobs();
console.log(`[Renderer] Starting: ${next.id} (${next.template})`);
try {
// Lazy-load Remotion renderer (heavy module)
const { renderMedia, selectComposition } = require('@remotion/renderer');
const bundleLocation = BUNDLE_DIR;
if (!fs.existsSync(bundleLocation)) {
throw new Error('Bundle not found. Run: npx remotion bundle src/index.ts --out-dir bundle');
}
next.progress = 10;
saveJobs();
const composition = await selectComposition({
serveUrl: bundleLocation,
id: next.compositionId,
inputProps: next.inputProps,
});
// Override duration
composition.durationInFrames = next.durationInFrames;
composition.width = next.width;
composition.height = next.height;
composition.fps = next.fps;
next.progress = 20;
saveJobs();
const outputFile = `${next.id}.mp4`;
const outputPath = path.join(STORAGE_DIR, outputFile);
await renderMedia({
composition,
serveUrl: bundleLocation,
codec: 'h264',
outputLocation: outputPath,
inputProps: next.inputProps,
chromiumOptions: {
executablePath: process.env.CHROME_PATH || process.env.PUPPETEER_EXECUTABLE_PATH || undefined,
args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage'],
},
concurrency: 1,
imageFormat: 'jpeg',
jpegQuality: 80,
timeoutInMilliseconds: 180000,
onProgress: ({ progress }) => {
next.progress = Math.round(20 + progress * 75);
// Don't save on every frame update — too expensive
if (next.progress % 10 === 0) saveJobs();
},
});
next.status = 'complete';
next.progress = 100;
next.outputFile = outputFile;
next.downloadUrl = `/api/download/${next.id}`;
next.completed = new Date().toISOString();
console.log(`[Renderer] Complete: ${next.id} → ${outputFile}`);
} catch (err) {
console.error(`[Renderer] Failed: ${next.id}`, err.message);
next.status = 'failed';
next.error = err.message;
}
saveJobs();
isRendering = false;
// Process next in queue
setImmediate(processQueue);
}
// --- Cleanup Cron: delete videos older than 24h ---
cron.schedule('0 * * * *', () => {
const cutoff = Date.now() - 24 * 60 * 60 * 1000;
let cleaned = 0;
try {
const files = fs.readdirSync(STORAGE_DIR);
for (const file of files) {
if (!file.endsWith('.mp4')) continue;
const filePath = path.join(STORAGE_DIR, file);
const stat = fs.statSync(filePath);
if (stat.mtimeMs < cutoff) {
fs.unlinkSync(filePath);
cleaned++;
}
}
// Also clean job entries for expired videos
jobs = jobs.filter(j => {
if (j.status === 'complete' && j.outputFile) {
const exists = fs.existsSync(path.join(STORAGE_DIR, j.outputFile));
if (!exists) { j.status = 'expired'; return true; }
}
return true;
});
if (cleaned > 0) {
console.log(`[Cleanup] Removed ${cleaned} expired video(s)`);
saveJobs();
}
} catch (e) { /* */ }
});
// --- Boot ---
app.listen(PORT, '0.0.0.0', () => {
console.log(`[Remotion Studio] Running on port ${PORT}`);
console.log(`[Remotion Studio] Bundle: ${fs.existsSync(BUNDLE_DIR) ? 'READY' : 'NOT FOUND — run npm run build'}`);
console.log(`[Remotion Studio] Templates: ${Object.keys(TEMPLATES).join(', ')}`);
console.log(`[Remotion Studio] Auth: ${API_KEY ? 'ENABLED' : 'DISABLED (open access)'}`);
});
|