├── .gitignore ├── Makefile ├── README.md ├── cloudformation └── template.yml └── vendor └── bin ├── lame ├── sox └── soxi /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/sox-aws-lambda-binary/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/sox-aws-lambda-binary/HEAD/README.md -------------------------------------------------------------------------------- /cloudformation/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/sox-aws-lambda-binary/HEAD/cloudformation/template.yml -------------------------------------------------------------------------------- /vendor/bin/lame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/sox-aws-lambda-binary/HEAD/vendor/bin/lame -------------------------------------------------------------------------------- /vendor/bin/sox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/sox-aws-lambda-binary/HEAD/vendor/bin/sox -------------------------------------------------------------------------------- /vendor/bin/soxi: -------------------------------------------------------------------------------- 1 | sox --------------------------------------------------------------------------------