This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zx | |
// Establish program arguments | |
const input = argv.i; | |
const output = argv.o; | |
const fadeDuration = parseInt(argv.f); | |
const useTransparency = argv.t; | |
// Quality options | |
const bitRate = argv.b; | |
const constantRateFactor = argv.crf; |