n8n Workflow

Create Transcription Jobs Using Aws Transcribe

This n8n workflow creates tasks and integrates with various services. Create Transcription Jobs Using Aws Transcribe - ready to import and run in your n8n instance.

n8n workflow.json

About This Script

This n8n workflow creates tasks and integrates with various services. Create Transcription Jobs Using Aws Transcribe - ready to import and run in your n8n instance.
Features:
  • Automates workflow tasks
  • Ready to import into n8n
  • Configurable parameters
Source Code
{
    "nodes": [
        {
            "name": "On clicking 'execute'",
            "type": "n8n-nodes-base.manualTrigger",
            "position": [
                190,
                160
            ],
            "parameters": [],
            "typeVersion": 1,
            "id": "6244ea7f-031c-410a-ab63-4fb146c0af5d"
        },
        {
            "name": "AWS Transcribe",
            "type": "n8n-nodes-base.awsTranscribe",
            "position": [
                590,
                160
            ],
            "parameters": {
                "options": [],
                "mediaFileUri": "=s3://{{$node[\"AWS S3\"].parameter[\"bucketName\"]}}/{{$json[\"Key\"]}}",
                "detectLanguage": true,
                "transcriptionJobName": "={{$json[\"Key\"].replace(/\\s/g,'-')}}"
            },
            "credentials": {
                "aws": "AWS Transcribe Credentials"
            },
            "typeVersion": 1,
            "id": "d82cb084-2db3-4329-8f8c-9b54cc487401"
        },
        {
            "name": "AWS S3",
            "type": "n8n-nodes-base.awsS3",
            "position": [
                390,
                160
            ],
            "parameters": {
                "options": [],
                "operation": "getAll",
                "returnAll": true,
                "bucketName": "n8n-docs"
            },
            "credentials": {
                "aws": "AWS S3 Credentials"
            },
            "typeVersion": 1,
            "id": "c1f8677e-2316-4436-82c7-0f2b3df3b549"
        }
    ],
    "connections": {
        "AWS S3": {
            "main": [
                [
                    {
                        "node": "AWS Transcribe",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "On clicking 'execute'": {
            "main": [
                [
                    {
                        "node": "AWS S3",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    },
    "n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n #automation #workflow
Quick Actions
More in n8n Workflows