Hi everyone,
I’m working on a 2-step automation process using Make, and I’m facing a limitation related to the subtitle generation delay on YouTube. Here’s what I’m trying to do
My current setup
Step 1 – Upload video from Google Drive to YouTube
- I automatically detect new Google Meet recordings in my Drive.
- I upload them to YouTube as unlisted videos so that automatic subtitles can be generated by YouTube.
- Once the upload starts, I immediately trigger Scenario 2.
Step 2 – Wait and fetch subtitles
- I use multiple
Sleep
modules (max 300 seconds each) to wait up to 40 minutes. - Then I send a request to fetch the subtitles via RapidAPI’s YouTube Transcript API.
The problem is: for long videos, subtitles are not ready within 40 minutes, so I have to manually restart the scenario later.
Current limitation
Since Make doesn’t allow Sleep
longer than 40 minutes and no native retry mechanism is available beyond that point, I’m stuck.
What I’d like to do
- Each day: check for new videos in Google Drive.
- Upload them to YouTube.
- Then, several hours later (or the next day), automatically attempt to retrieve subtitles.
- Send the subtitles to another scenario which will generate content ideas from the transcript.
But I want to avoid using Sleep or manual relaunches.
Questions
How would you structure this process to decouple the subtitle retrieval from the upload delay?
Any best practices to monitor when subtitles are actually ready (besides trying every X hours)?
Thanks in advance for your ideas and experience
Here are screenshots of my current scenarios if that helps:
—
Romain