Skip to content

Commit 915eb5f

Browse files
committed
add cli for testing in dev mode
1 parent 53cf986 commit 915eb5f

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"scripts": {
4444
"generate:package.json": "tsx ./tools/generate-commonjs-package-json.ts dist/cjs/package.json",
45-
"dev": "tsc -w --outDir dist/esm & node --watch ./dist/esm/index.js",
45+
"dev": "tsc -w & DISPLAY=:1 node --watch ./dist/esm/cli.js",
4646
"start": "node .",
4747
"lint": "eslint ./src",
4848
"build": "rimraf dist && npm run lint && npm run build:esm && npm run build:cjs && npm run generate:package.json",

src/cli.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import path from 'node:path';
2+
import { fileURLToPath } from 'node:url';
3+
import concat from './index.js';
4+
const __filename = fileURLToPath(import.meta.url);
5+
const __dirname = path.dirname(__filename);
6+
const getFile = (file: string) => path.join(__dirname, '..', '..', file);
7+
8+
concat({
9+
videos: [getFile('media/0.mp4'), getFile('media/0a.mp4'), getFile('media/1.mp4'), getFile('media/2.mp4')],
10+
transition: { name: 'directionalwipe', duration: 500 },
11+
output: './media/example.mp4',
12+
});

src/index.ts

-14
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,3 @@ export default concat;
108108

109109
export { default as transitions, type TransitionName } from './helpers/transitions-wrap.js';
110110
export type { ConcatOptions, ExtractAudioOpts, FrameFormat, InitFramesOptions, InitSceneOptions, Log, Transition } from './types/index.js';
111-
112-
// // RUN EXAMPLE
113-
114-
// import path from 'node:path';
115-
// import { fileURLToPath } from 'node:url';
116-
// const __filename = fileURLToPath(import.meta.url);
117-
// const __dirname = path.dirname(__filename);
118-
// const getFile = (file: string) => path.join(__dirname, '..', '..', file);
119-
120-
// concat({
121-
// videos: [getFile('media/0.mp4'), getFile('media/0a.mp4'), getFile('media/1.mp4'), getFile('media/2.mp4')],
122-
// transition: { name: 'directionalwipe', duration: 500 },
123-
// output: './media/example.mp4',
124-
// });

0 commit comments

Comments
 (0)