├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── index.js ├── index.test.js ├── media └── 1.mp4 ├── package.json ├── readme.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/index.test.js -------------------------------------------------------------------------------- /media/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/media/1.mp4 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/readme.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-extract-frame/HEAD/yarn.lock --------------------------------------------------------------------------------