media-server / src /batch /interpolate_legacy.mts
jbilcke-hf's picture
jbilcke-hf HF staff
working on new structure
6156cfb
raw
history blame contribute delete
409 Bytes
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)