You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
275 B
11 lines
275 B
const JSON5 = require('json5');
|
|
const fs = require('fs-extra');
|
|
|
|
const { renderSingleFrame } = require('..');
|
|
|
|
(async () => {
|
|
await renderSingleFrame({
|
|
time: 0,
|
|
clips: JSON5.parse(await fs.readFile('./videos.json5', 'utf-8')).clips,
|
|
});
|
|
})().catch(console.error);
|