forked from serverlesspub/ffmpeg-aws-lambda-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
44 lines (40 loc) · 1.34 KB
/
template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Description: >
Static build of FFmpeg/FFprobe for Amazon Linux 2023
Repository: https://github.com/nulib/ffmpeg-aws-lambda-layer
Forked from https://github.com/serverlesspub/ffmpeg-aws-lambda-layer
Parameters:
OutputName:
Type: String
Description: CloudFormation Output Name
Default: FFMpegLayer
Resources:
LambdaLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: ffmpeg
Description: FFMPEG for AWS Amazon Linux 2023 Lambda Runtimes
ContentUri: build/layer
LicenseInfo: GPL-2.0-or-later
RetentionPolicy: Retain
Outputs:
LayerVersion:
Description: Layer ARN Reference
Value: !Ref LambdaLayer
Export:
Name: !Ref OutputName
Metadata:
AWS::ServerlessRepo::Application:
Name: ffmpeg-lambda-layer
Description: >
Static build of FFmpeg/FFprobe for Amazon Linux 2023,
packaged as a Lambda layer. Bundles FFmpeg 7.1.
Author: Michael B. Klein (based on work by Gojko Adzic)
SpdxLicenseId: GPL-2.0-or-later
LicenseUrl: LICENSE.txt
ReadmeUrl: README-SAR.md
Labels: ['layer', 'lambda', 'ffmpeg', 'ffprobe']
HomePageUrl: https://github.com/nulib/ffmpeg-aws-lambda-layer
SemanticVersion: 1.0.0
SourceCodeUrl: https://github.com/nulib/ffmpeg-aws-lambda-layer