├── .gitignore ├── README.md ├── config.dev.example.json ├── ecs.js ├── handler.js ├── package.json ├── serverless.yml └── tests └── s3-event.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/README.md -------------------------------------------------------------------------------- /config.dev.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/config.dev.example.json -------------------------------------------------------------------------------- /ecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/ecs.js -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/handler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/serverless.yml -------------------------------------------------------------------------------- /tests/s3-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupakg/ffmpeg-video-thumb/HEAD/tests/s3-event.json --------------------------------------------------------------------------------