File size: 409 Bytes
ba98e69
95024b3
 
 
 
 
 
 
 
 
 
 
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/1688471841394.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)