File size: 403 Bytes
ba98e69
55dbf53
 
95024b3
55dbf53
b84093c
 
55dbf53
b84093c
 
55dbf53
b84093c
1
2
3
4
5
6
7
8
9
10
11
12
import { interpolateVideo } from "./interpolateVideoCLILegacy.mts"

// to test this file:
//  npm run postprod:interpolate sandbox/video/raccoon.mp4 sandbox/video/output.mp4

const inputFilePath = process.argv[2]
const outputFilePath = process.argv[3]

console.log('input file path:', inputFilePath)
console.log('output file path:', outputFilePath)

await interpolateVideo(inputFilePath, outputFilePath)