├── .eslintignore ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── src ├── ffprobe.d.ts └── index.ts ├── test ├── index.integration.test.ts └── index.unit.test.ts ├── tsconfig.commonjs.json ├── tsconfig.es6.json ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | dist 4 | node_modules -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js text eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store* 3 | *.log 4 | *.gz 5 | 6 | node_modules 7 | coverage 8 | .nyc_output 9 | dist 10 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn lint:fix 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/package.json -------------------------------------------------------------------------------- /src/ffprobe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/src/ffprobe.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/test/index.integration.test.ts -------------------------------------------------------------------------------- /test/index.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/test/index.unit.test.ts -------------------------------------------------------------------------------- /tsconfig.commonjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/tsconfig.commonjs.json -------------------------------------------------------------------------------- /tsconfig.es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/tsconfig.es6.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffco/get-video-duration/HEAD/yarn.lock --------------------------------------------------------------------------------