https://github.com/rswrz/audio2video
https://github.com/rswrz/audio2video
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rswrz/audio2video
- Owner: rswrz
- Created: 2020-04-25T13:11:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T20:52:46.000Z (about 5 years ago)
- Last Synced: 2025-02-07T13:55:54.838Z (5 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.