Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计提醒

notebooklm-audio-generatorNotebookLM audio 生成器

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

11,334

周安装

463

GitHub Stars

公开资料未说明

下载量

3,630
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:notebooklm-audio-generator(NotebookLM audio 生成器)
来源仓库:https://github.com/shiyanch/notebooklm-audio-generator
安装命令:
openclaw skills install notebooklm-audio-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install notebooklm-audio-generator

简介

自动生成多语言音频概述的 NotebookLM 插件。

  • 支持文件、URL、YouTube 等多种来源输入。
  • 可用于播客制作或视频配音素材处理。
  • 需配置首选语言和输出格式参数。notebooklm-audio-generator 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意音频时长限制及版权音乐使用规范。

SKILL.md

name
notebooklm-audio-generator
description
Automates uploading multiple sources (files, URLs, YouTube, Drive, text) to a NotebookLM notebook, generating a deep dive audio overview in a preferred language, and downloading the result. It guides the user through notebook management, source addition, audio generation, and downloading using the notebooklm-mcp-cli.

NotebookLM Audio Generator Skill

This skill automates the process of using Google's NotebookLM to generate a deep-dive audio overview from various sources and download it to a specified directory.

Prerequisites

This skill relies on the notebooklm-mcp-cli package and the epub2txt utility for .epub support. Before proceeding, ensure the user has them installed and authenticated.

Installation & Setup

If the user has not set up the CLI or the conversion tool, instruct them to do so first:

  1. Install the NotebookLM CLI:
   uv tool install notebooklm-mcp-cli
   # OR
   pip install notebooklm-mcp-cli
  1. Authenticate:
   nlm login
  1. Install epub2txt (for .epub support):

The skill expects epub2txt to be installed in your programs directory. Clone and initialize it using the following commands:

   mkdir -p ~/Programs
   cd ~/Programs
   git clone https://github.com/SPACESODA/epub2txt.git
   cd epub2txt
   chmod +x run.sh
   ./run.sh  # This initializes the virtual environment

Workflow

When activated, follow these steps strictly in order. Do not skip steps.

Step 1: Gather Information

Ask the user for the following information one by one to prepare for the generation:

  1. Ask for a desired name for the new notebook. If not provided, use the default name "Audio Overview Notebook".
  2. Source Selection: Ask the user to select their sources from the following options:

- Local Files: .pdf, .txt, and .epub (which will be automatically converted). Use GUI pickers: - macOS: osascript -e "set theFiles to choose file with prompt \"Select your source file(s):\" multiple selections allowed true" ... - Linux: zenity --file-selection --multiple ... - Windows: PowerShell OpenFileDialog. - Web/Video URLs: Ask the user to provide any website or YouTube URLs. - Google Drive: Ask for Google Drive Document IDs.

  1. Preferred Language: Ask the user for the preferred output language (BCP-47 code).

- Options: Provide common choices: en (English - default), zh (Chinese), ja (Japanese), es (Spanish), fr (French), de (German).

  1. Download Destination: Use a GUI directory picker to select where the audio file should be saved.

Crucial: Ask the user interactively to confirm they have provided/selected all the sources they wish to include before proceeding.

Step 2: Create a New Notebook

Use the notebook_create tool to create a new notebook with the provided name. Keep track of the notebook_id.

Step 3: Upload Sources

  • Loop through all gathered sources:

- EPUB Files: Convert to .txt first: cd ~/Programs/epub2txt && ./run.sh "<path>". Use the new .txt path. - Other Files: Use source_add(source_type="file", file_path="..."). - URLs/YouTube: Use source_add(source_type="url", url="..."). - Drive: Use source_add(source_type="drive", document_id="...").

  • Always set wait=true to ensure sources are processed.

Step 4: Generate Audio Overview

  • Use the studio_create tool to start the audio generation.

- Set notebook_id to the ID. - Set artifact_type to audio. - Set audio_format to deep_dive. - Set audio_length to long. - Language: Use the user's selected BCP-47 code (e.g., zh). - Custom Prompt: If the selected language is NOT English (en), you MUST provide the following focus_prompt to encourage a longer, more detailed output: > "Please provide an extremely detailed deep dive. Analyze each source file thoroughly without omitting any details. The conversation should be as long as possible, aiming for over 40 minutes." - Set confirm to true.

Step 5: Monitor Generation Status

  • Inform the user: Explicitly tell the user that generating a long, deep-dive audio overview can take 5 to 15 minutes.
  • Use the studio_status tool with action: status in a polling loop (using run_shell_command with sleep 300 between checks) until the status becomes completed.
  • Note the audio_url and artifact_id when finished. Crucial: If there are multiple audio artifacts returned in the status, always identify and note the latest one (the one with the most recent created_at timestamp).

Step 6: Download the Audio

  • Using the artifact_id of the latest audio, try using the download_artifact tool first to save the audio to the destination path with an .mp3 extension.

Step 7: Final Verification

  • Verify the downloaded file using file <output_path>.
  • Inform the user that the process is complete.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.93%
按下载量换算3,519

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills