🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Rask AI + Google Sheets: translated video tracking

Lisa Granqvist Partner Workflow Automation Expert

Video translation sounds simple until you’re chasing statuses in three tabs, copying links into Slack, and still not knowing what’s actually done. One missed handoff and your “multilingual release” becomes a quiet delay nobody owns.

This is the kind of mess marketing managers feel when launches pile up. course creators hit it when modules need localization. And agency teams handling client deliverables live in it. With Rask Sheets tracking, you get a single, reliable status log instead of “I think it’s processing?”

This workflow sends a video URL to Rask AI, waits until processing is actually finished, and then moves the translation project forward. You’ll see how it works, what you need, and how to adapt it to your own localization pipeline.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Rask AI + Google Sheets: translated video tracking

The Problem: Translation Handoffs Fall Apart

When your “process” is basically “upload it, check later, hope it’s done,” translation work turns into constant follow-ups. Someone submits the video link. Someone else checks Rask. Another person tries to remember which target language you picked. Then the translated output arrives, but it’s sitting in the wrong thread, and the spreadsheet (if you have one) is already outdated. The worst part is the mental load. You keep context-switching just to answer a basic question: what’s the status right now?

It adds up fast. Here’s where it breaks down in real teams.

  • You end up checking Rask AI manually every hour, which steals focus from actual publishing work.
  • Status updates get shared in chat, then disappear, so nobody trusts the “source of truth.”
  • A single wrong language code or link can waste a full processing cycle.
  • When errors happen, you find out late, usually right before a deadline.

The Solution: Send the URL, Then Track Every Translation

This n8n workflow turns video translation into a predictable pipeline. It starts when you provide a video URL and a destination language (Rask supports common sources like YouTube, Google Drive, S3, Vimeo, and direct links). n8n submits that media link to Rask AI, then checks back until the upload and processing are complete. Once the media is ready, the workflow automatically creates a translation project and keeps polling until that project finishes. If something fails, it stops the run and flags the error instead of silently “continuing” with missing data. That means fewer mysterious partial results and fewer last-minute surprises.

The workflow begins with an invocation trigger, then sends the video to Rask AI via HTTP requests using your OAuth2 connection. Two separate status checks (media status, then project status) keep things honest. When the status isn’t ready yet, it waits, tries again, and only moves forward when Rask is actually done.

What You Get: Automation vs. Results

Example: What This Looks Like

Say your team localizes 5 training videos a week into one new language. Manually, you might spend about 10 minutes per video just on “submit, check, update someone, check again,” which is roughly an hour weekly. With this workflow, submitting the URL takes about 2 minutes, then n8n handles the waiting and status checks in the background. You still review the final output, but you’re no longer babysitting the process.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Rask AI for video translation via API.
  • Google Sheets to log URLs, statuses, and outputs.
  • Rask OAuth2 credentials (Client ID/Secret from your Rask account settings).

Skill level: Intermediate. You’ll mainly be connecting OAuth2, pasting endpoints, and mapping a few fields cleanly.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

You trigger it with a video link and target language. The workflow is designed to start from an invocation trigger, so it can be called by another workflow, a form, a webhook, or even a simple internal “run translation” button you build later.

n8n submits the media to Rask AI. It uses HTTP Request nodes with your saved OAuth2 connection (named raskOAuth2) to create the media job, then fetches media details to see what state it’s in.

Status routing keeps the workflow from rushing ahead. A Switch routes based on the media status. If it’s not ready, a Wait node pauses the run, then the workflow checks again. Once media is ready, it creates the translation project and repeats the same pattern for project status.

Errors stop the run on purpose. Two Stop-and-Error nodes catch upload failures and project failures. Honestly, this is one of the most useful parts, because “silent failures” are how teams lose days.

You can easily modify Google Sheets logging to include fields like requester, due date, or the final translated URL based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Workflow Invocation Trigger

Set up the workflow to accept incoming inputs for the media link and destination language.

  1. Add the Workflow Invocation Trigger node as your trigger.
  2. In Workflow Inputs, include input fields named link and dst_lang as shown in the node configuration.
  3. Connect Workflow Invocation Trigger to Submit Media Link.

Step 2: Connect Rask AI API Requests for Media Upload

Submit the video link to Rask AI and begin polling for media status.

  1. Configure Submit Media Link with URL set to https://api.rask.ai/api/library/v1/media/link and Method set to POST.
  2. Under Body Parameters, set link to {{ $json.link }}, kind to video, and name to n8n.
  3. Credential Required: Connect your oAuth2Api credentials in Submit Media Link.
  4. Configure Retrieve Media Details with URL set to =https://api.rask.ai/api/library/v1/media/{{ $json.id }}.
  5. Credential Required: Connect your oAuth2Api credentials in Retrieve Media Details.
  6. Connect Submit Media LinkRetrieve Media DetailsRoute Media Status.

Step 3: Route Media Status and Poll Until Ready

Use status routing to handle failed uploads, proceed when ready, or pause and retry while processing.

  1. In Route Media Status, set the Error output condition to {{ $json.status }} equals failed.
  2. Set the Ready output condition to {{ $json.status }} equals ready.
  3. Set the Processing output condition to {{ $json.status }} equals processing.
  4. Connect the Processing output to Pause Media Polling, then back to Retrieve Media Details for polling.
  5. Connect the Error output to Upload Error Stop.
  6. Connect the Ready output to Generate Translation Project.

Step 4: Generate Translation Project and Monitor Status

Create the translation project and poll for completion before final output handling.

  1. Configure Generate Translation Project with URL set to https://api.rask.ai/v2/projects and Method set to POST.
  2. Under Body Parameters, set video_id to {{ $('Retrieve Media Details').item.json.id }}, dst_lang to {{ $('Workflow Invocation Trigger').item.json.dst_lang }}, and name to n8n.
  3. Credential Required: Connect your oAuth2Api credentials in Generate Translation Project.
  4. Configure Fetch Project Details with URL set to =https://api.rask.ai/v2/projects/{{ $json.id }}.
  5. Credential Required: Connect your oAuth2Api credentials in Fetch Project Details.
  6. Connect Generate Translation ProjectFetch Project DetailsRoute Project Status.

Step 5: Configure Project Status Routing and Error Handling

Stop on failures, wait during processing, and allow completion when the project reaches merging_done.

  1. In Route Project Status, set the Error output condition to {{ $json.status }} ends with failed.
  2. Set the Ready output condition to {{ $json.status }} equals merging_done.
  3. Set the Processing output condition to {{ $json.status }} not equals merging_done.
  4. Connect the Processing output to Pause Project Polling, then back to Fetch Project Details for polling.
  5. Connect the Error output to Project Error Stop with Error Message set to Project processing failed.

⚠️ Common Pitfall: If your project never reaches merging_done, confirm the translation job is active in Rask AI and that polling intervals in Pause Project Polling are appropriate for your media length.

Step 6: Test and Activate Your Workflow

Verify the end-to-end flow using a test invocation, then activate for production use.

  1. Manually execute Workflow Invocation Trigger with sample inputs for link and dst_lang.
  2. Confirm Submit Media Link returns an id and Retrieve Media Details shows status transitions.
  3. Verify Generate Translation Project creates a project and Fetch Project Details progresses to merging_done.
  4. Ensure no errors are triggered in Upload Error Stop or Project Error Stop during a successful run.
  5. When satisfied, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Rask AI OAuth2 credentials can expire or lack scopes. If things break, check the OAuth2 credential in n8n (and your Rask account settings) before changing anything else.
  • If you’re using Wait nodes or external processing, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses after a status check.
  • If you add AI copy (titles, descriptions, subtitles) later, default prompts are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this Rask Sheets tracking automation?

About 30 minutes once your Rask OAuth2 app is ready.

Do I need coding skills to automate translated video tracking?

No. You’ll connect OAuth2, paste a few values, and map fields between steps.

Is n8n free to use for this Rask Sheets tracking workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in Rask AI usage costs based on your video length and plan.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this Rask Sheets tracking workflow for multiple languages per video?

Yes, but you’ll want to loop over a list of target language codes and create one project per language. Most teams do this by adding a Google Sheets row (or a simple list) of languages, then iterating and reusing the same “Create project” and “Get project” requests for each language. You can also add a Sheets update after each status check so your log shows “queued,” “processing,” and “done” per language.

Why is my Rask AI connection failing in this workflow?

Usually it’s the OAuth2 setup in n8n, not the workflow logic. Confirm your credential is named raskOAuth2, that Client ID and Client Secret match what’s in your Rask account settings, and that the HTTP Request nodes are actually using that credential. If it used to work and suddenly doesn’t, re-authorize the OAuth2 connection and try again. Rate limits can also show up as random failures if you fire many translations at once.

How many videos can this Rask Sheets tracking automation handle?

On n8n Cloud Starter, you’re limited by your monthly execution allowance, while self-hosting depends on your server. Practically, the bigger constraint is Rask processing time per video, since each job waits and polls until completion. For most small teams, running a handful of translations per day is comfortable. If you plan to run dozens daily, reduce polling frequency and make sure you’re logging each run so retries don’t create duplicates.

Is this Rask Sheets tracking automation better than using Zapier or Make?

Often, yes, because this workflow relies on polling and branching based on status, which can get clunky and expensive on simpler automation tools. n8n also makes it easier to stop the run when something is wrong, rather than pushing broken data downstream. Zapier or Make can be fine for a basic “send URL” step, but they tend to struggle once you need waits, retries, and conditional routing. If you’re unsure, think about your real requirement: do you need reliable completion checks, or just a quick submit? Talk to an automation expert and you’ll get a straight answer for your setup.

Once this is running, translation stops being a “check back later” chore and becomes a trackable pipeline your team can trust. Set it up, hand it off, move on.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal