├── .gitignore ├── README.md ├── package.json ├── src ├── child-process-promise.js ├── index.js └── s3-util.js └── template.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | output.yml 4 | .vscode 5 | .idea 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/package.json -------------------------------------------------------------------------------- /src/child-process-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/src/child-process-promise.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/src/index.js -------------------------------------------------------------------------------- /src/s3-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/src/s3-util.js -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simalexan/s3-lambda-ffmpeg-mov-to-mp4-s3/HEAD/template.yml --------------------------------------------------------------------------------