Skip to content

Commit 12c16dd

Browse files
committed
using correct binary for ffmpeg
1 parent 5aef966 commit 12c16dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build/bin/ffmpeg:
1010
mkdir -p build/bin
1111
rm -rf build/ffmpeg*
1212
cd build; \
13-
curl https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-arm64-static.tar.xz | tar x
13+
curl https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz | tar x
1414
mv build/ffmpeg*/ffmpeg build/ffmpeg*/ffprobe build/bin
1515

1616
build/layer.zip: build/bin/ffmpeg

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is an AWS Lambda layer containing statically linked `ffmpeg` and `ffprobe`
44

55
## Use within Lambda
66

7-
You can use a pre-deployed ARN: `arn:aws:lambda:us-east-1:145266761615:layer:ffmpeg:3` or deploy yourself -- edit Makefile to set your deployment bucket etc, then just run `make deploy`.
7+
You can use a pre-deployed ARN: `arn:aws:lambda:us-east-1:145266761615:layer:ffmpeg:4` or deploy yourself -- edit Makefile to set your deployment bucket etc, then just run `make deploy`.
88

99
The binares will be in `/opt/bin/ffmpeg` and `/opt/bin/ffprobe` inside your Lambda container.
1010

0 commit comments

Comments
 (0)