Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rswrz/audio2video
https://github.com/rswrz/audio2video
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rswrz/audio2video
- Owner: rswrz
- Created: 2020-04-25T13:11:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T20:52:46.000Z (over 4 years ago)
- Last Synced: 2024-10-28T08:29:26.136Z (2 months ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# audio2video
Heavily inspired from https://serverless.com/blog/publish-aws-lambda-layers-serverless-framework/
## Prepare ffmpeg layer
```
mkdir layer
cd layer
curl -O https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
tar xf ffmpeg-git-amd64-static.tar.xz
rm ffmpeg-git-amd64-static.tar.xz
mv ffmpeg-git-*-amd64-static ffmpeg
cd ..
```## Deploy
```
serverless deploy
```## Usage
Upload `.mp3` file to S3 Bucket and wait for Lambda to create and place `.mp4` file into same S3 Bucket. See CloudWatch logs for details and debuging purposes.