├── .gitignore ├── .jscsrc ├── .jshintrc ├── LICENSE ├── README.md ├── gulpfile.js ├── lambdaenv.json.sample ├── package.json ├── sample ├── .DS_Store └── 0daa547b24de47cab0b1fdd20fd5dad0 │ ├── 0daa547b24de47cab0b1fdd20fd5dad0_hybe_teaser_45s-v2.mp4 │ ├── 0daa547b24de47cab0b1fdd20fd5dad0_large.jpg │ ├── 0daa547b24de47cab0b1fdd20fd5dad0_small.jpg │ └── manifest.json ├── src └── index.js └── tests └── test_function.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lambdaenv.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/lambdaenv.json.sample -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/package.json -------------------------------------------------------------------------------- /sample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/sample/.DS_Store -------------------------------------------------------------------------------- /sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_hybe_teaser_45s-v2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_hybe_teaser_45s-v2.mp4 -------------------------------------------------------------------------------- /sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_large.jpg -------------------------------------------------------------------------------- /sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/sample/0daa547b24de47cab0b1fdd20fd5dad0/0daa547b24de47cab0b1fdd20fd5dad0_small.jpg -------------------------------------------------------------------------------- /sample/0daa547b24de47cab0b1fdd20fd5dad0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/sample/0daa547b24de47cab0b1fdd20fd5dad0/manifest.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/test_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hybe/aws-autotranscode/HEAD/tests/test_function.js --------------------------------------------------------------------------------