https://github.com/zsmatrix62/sox_binary_builder
Building static binary SOX for AWS Lambda
https://github.com/zsmatrix62/sox_binary_builder
Last synced: 5 months ago
JSON representation
Building static binary SOX for AWS Lambda
- Host: GitHub
- URL: https://github.com/zsmatrix62/sox_binary_builder
- Owner: zsmatrix62
- Created: 2019-11-05T16:34:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T10:50:15.000Z (about 8 years ago)
- Last Synced: 2025-10-08T15:58:01.993Z (10 months ago)
- Size: 969 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
Compiling SOX for AWS
```sh
docker run --name make_sox -it lambci/lambda:build bash
```
Then start a new terminal on host:
```
docker cp build_sox make_sox:/var/task/build_sox
```
In docker:
```sh
chmod +x build_sox/*
mv build_sox/* ./
./static_mpeg.sh
./static_lame.sh
./static_sox.sh
```
In host:
```sh
docker cp make_sox:/usr/sox-14.4.2/bin/sox sox
```
now you have a sox binary in your current directory that you can run in a lambda.