首页龙虾技能列表 › Video Transcript Generator Free Online — 技能工具

📝 Video Transcript Generator Free Online — 技能工具

v1.0.0

convert video files into text transcript file with this skill. Works with MP4, MOV, AVI, WebM files up to 500MB. students, content creators, journalists use...

0· 8·0 当前·0 累计
by @mhogan2013-9·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/17
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The skill's declared purpose (transcribing videos via a cloud backend) matches most of its runtime instructions, but there are several inconsistencies and ambiguous behaviors (automatic anonymous token creation, hidden token handling, and unclear storage of session data/config) that warrant caution before installing.
评估建议
Before installing, consider these points: (1) This skill will communicate with mega-api-prod.nemovideo.ai and can create an anonymous API token automatically when first opened — ask the author to require explicit user consent before creating or using tokens. (2) Clarify where the skill stores session IDs and tokens (in-memory vs a file under ~/.config/nemovideo/). Persistent storage of tokens should be explicit and opt-in. (3) The SKILL.md tells the agent not to show raw API responses or token v...
详细分析 ▾
用途与能力
Requiring a single backend credential (NEMO_TOKEN) is coherent with a cloud-based video processing service. However, the SKILL.md frontmatter lists a config path (~/.config/nemovideo/) while the registry metadata shows no required config paths — this mismatch is an unexplained inconsistency.
指令范围
The instructions direct the agent to automatically create an anonymous token (POST to mega-api-prod.nemovideo.ai) when NEMO_TOKEN is not present, and to 'connect ... automatically' on first open. They also instruct the agent not to display raw API responses or token values to the user. Automatic network calls and hidden handling of credentials without explicit user consent broaden the skill's scope beyond a simple 'upload-and-transcribe' helper and reduce transparency about what is transmitted.
安装机制
No install spec or code files are present; the skill is instruction-only and therefore does not write new code to disk or pull executables. This is the lowest-risk install mechanism.
凭证需求
Only NEMO_TOKEN is declared as required, which is proportionate for a service-backed transcription tool. However, SKILL.md implies use of a config directory and persistent session storage without those config paths being declared in the registry metadata. Also, the instruction to suppress showing the token to users means the skill will manage secrets without clear visibility or explicit permission.
持久化与权限
The skill instructs storing a session_id and treats the returned anonymous token as NEMO_TOKEN (valid 7 days). It does not specify where session/token data should be stored (memory vs disk). The frontmatter includes a config path that suggests persistent storage (~/.config/nemovideo/), but the registry metadata omitted this. The combination of automatic token creation, hidden token handling, and ambiguous persistence is a privacy/persistence concern.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/17

Version 1.0.0 — Initial release. - Launches a free online tool to generate text transcripts from video files (MP4, MOV, AVI, WebM up to 500MB). - Automatic AI transcript generation takes just 30-90 seconds on cloud GPUs. - Supports easy file upload, 1080p export, and session-based editing workflows. - Offers anonymous sign-in with 100 free credits (valid 7 days); setup is fast and simple. - Includes clear error handling, guided workflows, and detailed API documentation for reliable video-to-text conversion.

● 无害

安装命令 点击复制

官方npx clawhub@latest install video-transcript-generator-free-online
镜像加速npx clawhub@latest install video-transcript-generator-free-online --registry https://cn.clawhub-mirror.com

技能文档

Getting Started

Share your video files and I'll get started on AI transcript generation. Or just tell me what you're thinking.

Try saying:

  • "convert my video files"
  • "export 1080p MP4"
  • "generate a full text transcript from"

First-Time Connection

When a user first opens this skill, connect to the processing backend automatically. Briefly let them know (e.g. "Setting up...").

Authentication: Check if NEMO_TOKEN is set in the environment. If it is, skip to step 2.

  • Obtain a free token: Generate a random UUID as client identifier. POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with header X-Client-Id set to that UUID. The response data.token is your NEMO_TOKEN — 100 free credits, valid 7 days.
  • Create a session: POST to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Authorization: Bearer , Content-Type: application/json, and body {"task_name":"project","language":""}. Store the returned session_id for all subsequent requests.

Keep setup communication brief. Don't display raw API responses or token values to the user.

# Video Transcript Generator Free Online — Generate Text From Any Video

This tool takes your video files and runs AI transcript generation through a cloud rendering pipeline. You upload, describe what you want, and download the result.

Say you have a 10-minute YouTube tutorial video and want to generate a full text transcript from this video — the backend processes it in about 30-90 seconds and hands you a 1080p MP4.

Tip: shorter videos under 5 minutes process significantly faster.

Matching Input to Actions

User prompts referencing video transcript generator free online, aspect ratio, text overlays, or audio tracks get routed to the corresponding action via keyword and intent classification.

User says...ActionSkip SSE?
"export" / "导出" / "download" / "send me the video"→ §3.5 Export
"credits" / "积分" / "balance" / "余额"→ §3.3 Credits
"status" / "状态" / "show tracks"→ §3.4 State
"upload" / "上传" / user sends file→ §3.2 Upload
Everything else (generate, edit, add BGM…)→ §3.1 SSE

Cloud Render Pipeline Details

Each export job queues on a cloud GPU node that composites video layers, applies platform-spec compression (H.264, up to 1080x1920), and returns a download URL within 30-90 seconds. The session token carries render job IDs, so closing the tab before completion orphans the job.

All calls go to https://mega-api-prod.nemovideo.ai. The main endpoints:

  • SessionPOST /api/tasks/me/with-session/nemo_agent with {"task_name":"project","language":""}. Gives you a session_id.
  • Chat (SSE)POST /run_sse with session_id and your message in new_message.parts[0].text. Set Accept: text/event-stream. Up to 15 min.
  • UploadPOST /api/upload-video/nemo_agent/me/ — multipart file or JSON with URLs.
  • CreditsGET /api/credits/balance/simple — returns available, frozen, total.
  • StateGET /api/state/nemo_agent/me//latest — current draft and media info.
  • ExportPOST /api/render/proxy/lambda with render ID and draft JSON. Poll GET /api/render/proxy/lambda/ every 30s for completed status and download URL.

Formats: mp4, mov, avi, webm, mkv, jpg, png, gif, webp, mp3, wav, m4a, aac.

Three attribution headers are required on every request and must match this file's frontmatter:

HeaderValue
X-Skill-Sourcevideo-transcript-generator-free-online
X-Skill-Versionfrontmatter version
X-Skill-Platformauto-detect: clawhub / cursor / unknown from install path
Include Authorization: Bearer and all attribution headers on every request — omitting them triggers a 402 on export.

Draft JSON uses short keys: t for tracks, tt for track type (0=video, 1=audio, 7=text), sg for segments, d for duration in ms, m for metadata.

Example timeline summary:

Timeline (3 tracks): 1. Video: city timelapse (0-10s) 2. BGM: Lo-fi (0-10s, 35%) 3. Title: "Urban Dreams" (0-3s)

Translating GUI Instructions

The backend responds as if there's a visual interface. Map its instructions to API calls:

  • "click" or "点击" → execute the action via the relevant endpoint
  • "open" or "打开" → query session state to get the data
  • "drag/drop" or "拖拽" → send the edit command through SSE
  • "preview in timeline" → show a text summary of current tracks
  • "Export" or "导出" → run the export workflow

Reading the SSE Stream

Text events go straight to the user (after GUI translation). Tool calls stay internal. Heartbeats and empty data: lines mean the backend is still working — show "⏳ Still working..." every 2 minutes.

About 30% of edit operations close the stream without any text. When that happens, poll /api/state to confirm the timeline changed, then tell the user what was updated.

Error Handling

CodeMeaningAction
0SuccessContinue
1001Bad/expired tokenRe-auth via anonymous-token (tokens expire after 7 days)
1002Session not foundNew session §3.0
2001No creditsAnonymous: show registration URL with ?bind= (get from create-session or state response when needed). Registered: "Top up credits in your account"
4001Unsupported fileShow supported formats
4002File too largeSuggest compress/trim
400Missing X-Client-IdGenerate Client-Id and retry (see §1)
402Free plan export blockedSubscription tier issue, NOT credits. "Register or upgrade your plan to unlock export."
429Rate limit (1 token/client/7 days)Retry in 30s once

Tips and Tricks

The backend processes faster when you're specific. Instead of "make it look better", try "generate a full text transcript from this video" — concrete instructions get better results.

Max file size is 500MB. Stick to MP4, MOV, AVI, WebM for the smoothest experience.

MP4 files give the most reliable transcription accuracy with our AI engine.

Common Workflows

Quick edit: Upload → "generate a full text transcript from this video" → Download MP4. Takes 30-90 seconds for a 30-second clip.

Batch style: Upload multiple files in one session. Process them one by one with different instructions. Each gets its own render.

Iterative: Start with a rough cut, preview the result, then refine. The session keeps your timeline state so you can keep tweaking.

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务