├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── index.js ├── lib ├── cli.js ├── index.js └── index.test.js ├── media ├── 0.mp4 ├── 1.mp4 ├── 2.mp4 ├── big-buck-bunny-30.gif ├── big-buck-bunny-6x5-padding.jpg ├── big-buck-bunny-6x5.jpg └── big-buck-bunny-8x4.jpg ├── package.json ├── readme.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/index.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/lib/index.test.js -------------------------------------------------------------------------------- /media/0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/0.mp4 -------------------------------------------------------------------------------- /media/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/1.mp4 -------------------------------------------------------------------------------- /media/2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/2.mp4 -------------------------------------------------------------------------------- /media/big-buck-bunny-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/big-buck-bunny-30.gif -------------------------------------------------------------------------------- /media/big-buck-bunny-6x5-padding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/big-buck-bunny-6x5-padding.jpg -------------------------------------------------------------------------------- /media/big-buck-bunny-6x5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/big-buck-bunny-6x5.jpg -------------------------------------------------------------------------------- /media/big-buck-bunny-8x4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/media/big-buck-bunny-8x4.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/readme.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/ffmpeg-generate-video-preview/HEAD/yarn.lock --------------------------------------------------------------------------------