Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

web-video-transcribe-docxWEB video transcribe DOCX 音频

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

2,212

周安装

95

GitHub Stars

公开资料未说明

下载量

775
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:web-video-transcribe-docx(WEB video transcribe DOCX 音频)
来源仓库:https://github.com/c-narcissus/web-video-transcribe-docx
安装命令:
openclaw skills install web-video-transcribe-docx
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install web-video-transcribe-docx

简介

将中文视频或音频转为文本与 Word 交付成果,支持离线优先流程。

  • 适用于视频项目脚本编写与素材整理场景。
  • 可提取媒体流并生成结构化文档,便于后续编辑使用。
  • 安装命令:openclaw skills install web-video-transcribe-docx;需确认音视频源路径与格式。
  • 注意版权授权要求,避免涉及人物肖像或商业发布时违规。

SKILL.md

name
web-video-transcribe-docx
description
Offline-first workflow for turning Chinese web page video or audio into text and Word deliverables. Use when Codex needs to (1) extract playable media streams from arbitrary web pages, including pages that expose MP4, M3U8, MPD, or separate audio streams, (2) download direct media URLs with common headers such as Referer or Origin, (3) run local Chinese ASR with SenseVoice via sherpa-onnx, (4) clean or chapterize the transcript conservatively, or (5) produce TXT and DOCX files from the result. Toutiao pages are a supported special case, not the only target.
license
MIT-0
metadata
{"openclaw":{"requires":{"anyBins":["python","python3","py"]}},"author":"qu_yw","version":"1.0.0","category":"media-transcription"}

Web Video Transcribe Docx

Overview

Use the bundled scripts to extract media, download it, transcribe it offline, and render DOCX output.

Prefer the deterministic scripts before hand-rolling new code.

Use {baseDir} when constructing file paths inside this skill so the instructions stay portable across agents and marketplaces.

Environment

  • Require Python 3 and local filesystem access.
  • Require network access for first-run model download and for fetching page or media URLs.
  • Require a local Chrome or Edge browser only when extracting media from a web page.

Quick Start

  1. Run python {baseDir}/scripts/bootstrap_env.py once in the target environment.
  2. For a generic web page URL, run python {baseDir}/scripts/pipeline_web_to_docx.py <url> --output-dir <dir>.
  3. For a direct media URL, run python {baseDir}/scripts/download_url.py <url> <output> and then python {baseDir}/scripts/transcribe_sensevoice.py --input <file> --output-txt <txt> --output-docx <docx>.
  4. For a local media file, run python {baseDir}/scripts/transcribe_sensevoice.py --input <file> --output-txt <txt> --output-docx <docx>.
  5. If the user asks for a polished reading version rather than a raw transcript, read references/cleanup-guidelines.md, produce a refined .txt, and then render it with python {baseDir}/scripts/transcript_to_docx.py.

Example Requests

  • "Transcribe the Chinese audio from this web video and export it as a Word document."
  • "Turn this MP4 into a transcript, then reorganize it into chaptered reading notes."
  • "This page needs a Referer header for media download. Extract the media stream and convert it to DOCX."

Workflow

1. Classify the source

  • Generic page URL: Use python {baseDir}/scripts/pipeline_web_to_docx.py first. If the page is especially stubborn and it is a Toutiao page, python {baseDir}/scripts/pipeline_toutiao_to_docx.py and python {baseDir}/scripts/extract_toutiao_media.py remain available as site-specific fallbacks.
  • Direct media URL: Use python {baseDir}/scripts/download_url.py, then transcribe.
  • Local file: Transcribe directly.

2. Preserve raw outputs

  • Keep the raw transcript as its own .txt.
  • If you produce a cleaned or chapterized version, save it as a separate file.
  • Do not overwrite the raw transcript unless the user explicitly asks.

3. Prefer the audio stream

  • If a page exposes a dedicated audio stream, prefer downloading that instead of the full video stream.
  • If the page only exposes a video stream, let ffmpeg decode audio during transcription.
  • If the page exposes HLS or DASH manifests, prefer downloading them through the bundled downloader or pipeline instead of raw HTTP GET.

4. Refine conservatively

  • Preserve meaning.
  • Fix obvious ASR mistakes, punctuation, paragraph breaks, headings, and chapter boundaries.
  • Do not invent quotes or historical claims that are not supported by the transcript.
  • If a passage is too noisy to restore confidently, keep it neutral instead of fabricating detail.

5. Stay within scope

  • Only download URLs that the user supplied directly or that the extractor captured from the target page.
  • Do not request, store, or exfiltrate cookies, access tokens, or account credentials.
  • Do not attempt to bypass DRM, login walls, or geo-restriction controls.
  • If a page requires authenticated browser state that is not already available, say so plainly and stop at the supported boundary.

6. Render deliverables

  • Use python {baseDir}/scripts/transcript_to_docx.py for generic TXT-to-DOCX rendering.
  • Use the raw transcript for auditability and the refined transcript for reading quality.

Scripts

  • scripts/bootstrap_env.py

Install or verify the Python packages used by this skill.

  • scripts/extract_web_media.py

Open a generic web page in a real browser, capture likely media URLs plus common download headers, and emit a JSON manifest.

  • scripts/extract_toutiao_media.py

Open a Toutiao page in a real browser, capture audio/video URLs, and emit a JSON manifest with the same schema as the generic extractor.

  • scripts/download_url.py

Download a direct media URL to disk with a stable user agent, optional headers, and HLS/DASH handling.

  • scripts/transcribe_sensevoice.py

Download the SenseVoice model on demand, segment media, run offline ASR, and emit TXT and optional DOCX.

  • scripts/transcript_to_docx.py

Render timestamped transcripts or chapterized notes into a Word document.

  • scripts/pipeline_web_to_docx.py

Run the generic end-to-end pipeline: extract, download, transcribe, and render.

  • scripts/pipeline_toutiao_to_docx.py

Run the Toutiao-specialized end-to-end pipeline for cases where the generic extractor is not preferred.

References

Validation

  • Run python {baseDir}/scripts/bootstrap_env.py before first use in a fresh environment.
  • Validate the skill folder with skill-creator/scripts/quick_validate.py.
  • Prefer testing --help and one representative happy path after changing the scripts.
  • If extraction fails on a page, capture a direct media URL with browser tooling and continue with the downloader + transcriber.
  • Do not promise support for DRM-protected streams, authenticated cookies, or sites that only expose encrypted EME playback.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.25%
按下载量换算684

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills