Skip to content

Commit 4a586a0

Browse files
authored
Create apigw-lambda-transcribe.json
1 parent f98e437 commit 4a586a0

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
{
2+
"title": "Subtitle generation using AWS API Gateway and AWS Lambda",
3+
"description": "This pattern creates an AWS Lambda function which will invoke Amazon Transcribe for speech-to-text conversion, and stores results in Amazon S3",
4+
"language": "Python",
5+
"level": "200",
6+
"framework": "Terraform",
7+
"introBox": {
8+
"headline": "How it works",
9+
"text": [
10+
"This sample pattern is an automated serverless solution for subtitle generation using AWS services. This system securely handles video file uploads via pre-signed URLs, automatically triggers Amazon Transcribe for speech-to-text conversion, and stores results in S3."
11+
]
12+
},
13+
"gitHub": {
14+
"template": {
15+
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/apigw-lambda-transcribe",
16+
"templateURL": "serverless-patterns/apigw-lambda-transcribe",
17+
"projectFolder": "apigw-lambda-transcribe",
18+
"templateFile": "main.tf"
19+
}
20+
},
21+
"resources": {
22+
"bullets": [
23+
{
24+
"text": "Uploading objects with presigned URLs",
25+
"link": "https://docs.aws.amazon.com/AmazonS3/latest/userguide/PresignedUrlUploadObject.html"
26+
},
27+
{
28+
"text": "StartTranscriptionJob",
29+
"link": "https://docs.aws.amazon.com/transcribe/latest/APIReference/API_StartTranscriptionJob.html"
30+
}
31+
]
32+
},
33+
"deploy": {
34+
"text": ["terraform init", "terraform apply"]
35+
},
36+
"testing": {
37+
"text": ["See the GitHub repo for detailed testing instructions."]
38+
},
39+
"cleanup": {
40+
"text": ["terraform destroy", "terraform show"]
41+
},
42+
"authors": [
43+
{
44+
"name": "Archana V",
45+
"image": "https://media.licdn.com/dms/image/v2/D5603AQGhkVtEhllFEw/profile-displayphoto-shrink_400_400/B56ZZH3LL6H0Ag-/0/1744962369913?e=1750291200&v=beta&t=R0hX6jzWC03OyoWKvYJ0jDDTuPocobPSy0lAJY-3XfA",
46+
"bio": "Solutions Architect at AWS",
47+
"linkedin": "archana-venkat-9b80b7184"
48+
}
49+
],
50+
"patternArch": {
51+
"icon1": {
52+
"x": 15,
53+
"y": 50,
54+
"service": "s3",
55+
"label": "Amazon S3"
56+
},
57+
"icon2": {
58+
"x": 40,
59+
"y": 50,
60+
"service": "lambda",
61+
"label": "AWS Lambda"
62+
},
63+
"icon3": {
64+
"x": 65,
65+
"y": 50,
66+
"service": "transcribe",
67+
"label": "Amazon Transcribe"
68+
},
69+
"icon4": {
70+
"x": 90,
71+
"y": 50,
72+
"service": "s3",
73+
"label": "Amazon S3"
74+
},
75+
"line1": {
76+
"from": "icon1",
77+
"to": "icon2",
78+
"label": ""
79+
},
80+
"line2": {
81+
"from": "icon2",
82+
"to": "icon3",
83+
"label": ""
84+
},
85+
"line3": {
86+
"from": "icon3",
87+
"to": "icon4",
88+
"label": ""
89+
}
90+
}
91+
}

0 commit comments

Comments
 (0)