loom-transcript

द्वारा n8n-io

लूम वीडियो URL से पूरा ट्रांसक्रिप्ट प्राप्त करें और प्रदर्शित करें। इसका उपयोग तब करें जब उपयोगकर्ता लूम ट्रांसक्रिप्ट प्राप्त करना या पढ़ना चाहता है।

npx skills add https://github.com/n8n-io/n8n --skill loom-transcript

Loom Transcript Fetcher

Fetch the transcript from a Loom video using Loom's GraphQL API.

Instructions

Given the Loom URL: $ARGUMENTS

1. Extract the Video ID

Parse the Loom URL to extract the 32-character hex video ID. Supported URL formats:

  • https://www.loom.com/share/<video-id>
  • https://www.loom.com/embed/<video-id>
  • https://www.loom.com/share/<video-id>?sid=<session-id>

The video ID is the 32-character hex string after /share/ or /embed/.

2. Fetch Video Metadata

Use the WebFetch tool to POST to https://www.loom.com/graphql to get the video title and details.

Use this curl command via Bash:

curl -s 'https://www.loom.com/graphql' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'x-loom-request-source: loom_web_45a5bd4' \
  -H 'apollographql-client-name: web' \
  -H 'apollographql-client-version: 45a5bd4' \
  -d '{
    "operationName": "GetVideoSSR",
    "variables": {"id": "<VIDEO_ID>", "password": null},
    "query": "query GetVideoSSR($id: ID!, $password: String) { getVideo(id: $id, password: $password) { ... on RegularUserVideo { id name description createdAt owner { display_name } } } }"
  }'

3. Fetch the Transcript URLs

Use curl via Bash to call the GraphQL API:

curl -s 'https://www.loom.com/graphql' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'x-loom-request-source: loom_web_45a5bd4' \
  -H 'apollographql-client-name: web' \
  -H 'apollographql-client-version: 45a5bd4' \
  -d '{
    "operationName": "FetchVideoTranscript",
    "variables": {"videoId": "<VIDEO_ID>", "password": null},
    "query": "query FetchVideoTranscript($videoId: ID!, $password: String) { fetchVideoTranscript(videoId: $videoId, password: $password) { ... on VideoTranscriptDetails { id video_id source_url captions_source_url } ... on GenericError { message } } }"
  }'

Replace <VIDEO_ID> with the actual video ID extracted in step 1.

The response contains:

  • source_url — JSON transcript URL
  • captions_source_url — VTT (WebVTT) captions URL

4. Download and Parse the Transcript

Fetch both URLs returned from step 3 (if available):

  1. VTT captions (captions_source_url): Download with curl -sL "<url>". This is a WebVTT file with timestamps and text.
  2. JSON transcript (source_url): Download with curl -sL "<url>". This is a JSON file with transcript segments.

Prefer the VTT captions as the primary source since they include proper timestamps. Fall back to the JSON transcript if VTT is unavailable.

5. Present the Transcript

Format and present the full transcript to the user:

Video: [Title from metadata] Author: [Owner name] Date: [Created date]


0:00 - First transcript segment text...

0:14 - Second transcript segment text...

(continue for all segments)


Error Handling

  • If the GraphQL response contains a GenericError, report the error message to the user.
  • If both source_url and captions_source_url are null/missing, tell the user that no transcript is available for this video.
  • If the video URL is invalid or the ID cannot be extracted, ask the user for a valid Loom URL.

Notes

  • No authentication or cookies are required — Loom's transcript API is publicly accessible.
  • Only English transcripts are available through this API.
  • Transcripts are auto-generated and may contain minor errors.

n8n-io की और Skills

n8n-cli
n8n-io
n8n CLI का उपयोग करके n8n इंस्टेंस पर वर्कफ़्लो, क्रेडेंशियल्स, एक्ज़ीक्यूशन और अधिक का प्रबंधन करें। जब उपयोगकर्ता n8n के साथ इंटरैक्ट करने, वर्कफ़्लो को स्वचालित करने के लिए कहे, तब उपयोग करें…
official
create-issue
n8n-io
n8n कन्वेंशनों का पालन करते हुए Linear टिकट या GitHub इश्यू बनाएं। जब उपयोगकर्ता टिकट बनाने, बग दर्ज करने, इश्यू खोलने, या /create-issue कहने के लिए कहे तब उपयोग करें।
official
node-add-oauth
n8n-io
मौजूदा n8n नोड में OAuth2 क्रेडेंशियल समर्थन जोड़ें — क्रेडेंशियल फ़ाइल बनाता है, नोड अपडेट करता है, परीक्षण जोड़ता है, और CLI स्थिरांक को सिंक में रखता है। इसका उपयोग तब करें जब...
official
spec-driven-development
n8n-io
कार्यान्वयन और विनिर्देशों को समकालिक रखता है। इसका उपयोग तब करें जब किसी ऐसी सुविधा पर काम कर रहे हों जिसका विनिर्देश .claude/specs/ में हो, जब उपयोगकर्ता /spec कहे, या जब शुरू कर रहे हों…
official
content-design
n8n-io
Product content designer for UI copy. Use when writing, reviewing, or auditing user-facing text: button labels, error messages, tooltips, empty states, modal…
official
create-issue
n8n-io
Create Linear tickets or GitHub issues following n8n conventions. Use when the user asks to create a ticket, file a bug, open an issue, or says /create-issue.
official
agent-builder
n8n-io
लक्ष्य n8n एजेंट की बिल्ड कॉन्फ़िगरेशन बनाते, कॉन्फ़िगर करते या संपादित करते समय उपयोग करें — चैट इंटीग्रेशन/ट्रिगर, MCP सर्वर, नोड-टूल रिसोर्स लोकेटर,…
official
create-pr
n8n-io
GitHub पुल रिक्वेस्ट बनाता है जिसमें उचित रूप से स्वरूपित शीर्षक होते हैं जो check-pr-title CI सत्यापन को पास करते हैं। PR बनाते समय, समीक्षा के लिए परिवर्तन सबमिट करते समय उपयोग करें,…
official