├── .gitignore ├── .travis.yml ├── index.js ├── license ├── package.json ├── readme.md ├── src ├── normalizer.js ├── normalizer.js.map └── normalizer.ts ├── test ├── .gitignore ├── index.js ├── sample short with spaces.mp3 ├── sample.mp4 ├── sample.nosound.mp4 └── sample.short.mp3 └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | launch.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/readme.md -------------------------------------------------------------------------------- /src/normalizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/src/normalizer.js -------------------------------------------------------------------------------- /src/normalizer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/src/normalizer.js.map -------------------------------------------------------------------------------- /src/normalizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/src/normalizer.ts -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.processed.* 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/test/index.js -------------------------------------------------------------------------------- /test/sample short with spaces.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/test/sample short with spaces.mp3 -------------------------------------------------------------------------------- /test/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/test/sample.mp4 -------------------------------------------------------------------------------- /test/sample.nosound.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/test/sample.nosound.mp4 -------------------------------------------------------------------------------- /test/sample.short.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/test/sample.short.mp3 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterforgacs/ffmpeg-normalize/HEAD/tsconfig.json --------------------------------------------------------------------------------