Token导航 LogoToken导航TokenDH.com
音频生成操作浏览器clawhub未标认证来源可访问clear审计提醒

meowmusic-youtube-mp3喵音乐 youtube mp3

Agent Skill

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

总安装

3,280

周安装

134

GitHub Stars

公开资料未说明

下载量

1,051
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install meowmusic-youtube-mp3

简介

meowmusic-youtube-mp3 封装 YouTube 音频提取完整工作流。

  • 集成 Chrome cookie 管理与服务端转码处理链。
  • 输出为标准 MP3 格式并支持批量队列处理。meowmusic-youtube-mp3 属于音频生成类 Skill,可作为该场景下的辅助能力补充。
  • 需自行维护 YouTube 访问凭证避免被封禁。
  • 建议遵守 YouTube 服务条款,限制下载频率。

SKILL.md

name
meowmusic-youtube-mp3
description
Package and reuse the MeowMusicServer-patched YouTube fallback workflow: Windows Chrome cookie export/sync to server, server-side yt-dlp/yt-dlp-ejs/ffmpeg setup, old-source-first with YouTube fallback, and MV-to-MP3 extraction/caching. Use when Claude needs to wire YouTube audio acquisition into MeowMusicServer or a similar music service, debug YouTube download failures, refresh cookies from a Windows Chrome profile, or implement a local-cache MP3 flow from YouTube videos.

MeowMusic YouTube MP3

Use this skill to rebuild the currently working MeowMusicServer-patched solution into another repo/server without rediscovering the whole stack.

Workflow decision tree

  1. Need cookie sync from Windows Chrome to server?

- Use scripts/youtube_cookie_sync.py. - If the user wants a double-click workflow on Windows, also use scripts/windows/sync_cookie.bat and scripts/windows/open_youtube.bat. - If you need API shape or server handler details, read references/cookie-api-and-sync.md.

  1. Need to prepare a Linux server for YouTube download and MP3 extraction?

- Run scripts/install_server_env.sh. - If challenge solving or runtime behavior is flaky, read references/server-runtime-notes.md.

  1. Need to patch MeowMusicServer so old sources stay first and YouTube acts only as fallback/补源?

- Read references/meowmusic-integration.md. - Keep source priority as: sources.json → local library → cache → legacy upstreams → YouTube fallback. - Do not make YouTube the default first source unless the user explicitly asks.

  1. Need MV -> MP3 instead of direct streaming?

- Prefer yt-dlp to fetch bestaudio, then use ffmpeg to normalize/transcode into a stable cached music.mp3. - Read references/meowmusic-integration.md for the patch pattern and command shape.

Core operating rules

  • Prefer old/legacy music sources first. YouTube is a补源/fallback path, not the primary path.
  • Prefer local reusable cache/library over repeated redownloads.
  • Prefer returning a stable cached music.mp3 path to devices instead of a fragile live stream.
  • If a cookie file exists, pass it to yt-dlp automatically.
  • When YouTube requires extra handling, prefer extractor args compatible with the known-good setup:

- youtube:player_client=tv,web;formats=missing_pot - youtube:player_skip=webpage,configs

  • Keep all cookie and bearer-token material out of the skill package. Use placeholders only.

Recommended implementation shape

1. Windows cookie sync

On Windows, export cookies from Chrome with:

yt-dlp --cookies-from-browser chrome:Default --cookies youtube-cookies.txt --skip-download https://www.youtube.com/watch?v=dQw4w9WgXcQ

Then POST the cookie file content to a server endpoint such as:

  • POST /api/admin/youtube-cookie/update
  • optional status check: GET /api/admin/youtube-cookie/status

Use scripts/youtube_cookie_sync.py unless the repo already has its own equivalent.

2. Server download strategy

Use this shape:

  1. Search top YouTube MV/result for a song.
  2. Download audio with yt-dlp into a per-track cache directory.
  3. Convert the downloaded source into music.mp3 with ffmpeg.
  4. Return cached local URLs from the service.

3. MeowMusic source order

Use this order unless the user asks otherwise:

  1. curated sources.json
  2. local uploaded/downloaded library
  3. existing cache hits
  4. legacy remote music APIs
  5. YouTube fallback

This keeps the product aligned with the current direction: local-first, old-source-first, YouTube only for missing tracks.

Files in this skill

  • scripts/install_server_env.sh — server bootstrap for Node 22, yt-dlp, yt-dlp-ejs, ffmpeg.
  • scripts/youtube_cookie_sync.py — export Chrome/Edge/Firefox cookies and push them to the server.
  • scripts/windows/sync_cookie.bat — Windows double-click wrapper.
  • scripts/windows/open_youtube.bat — helper to open YouTube in Chrome.
  • references/cookie-api-and-sync.md — cookie API contract and usage notes.
  • references/server-runtime-notes.md — server environment and challenge-solver notes.
  • references/meowmusic-integration.md — patch strategy and concrete Go snippets.

Execution notes

  • Read only the reference file relevant to the current task.
  • When editing an existing repo, prefer minimal surgical patches over broad rewrites.
  • When a download path already works, preserve behavior and only harden the flaky parts.
  • If the target repo differs from MeowMusicServer, reuse the flow, not the exact filenames.

适合场景

01

生成背景音乐

02

生成歌曲或旋律

03

视频和播客配乐

04

社媒内容音频素材

能力概览

能力 1

调用音乐生成模型

能力 2

支持文本到音乐或歌曲生成

能力 3

提供 CLI 示例和使用场景

能力 4

适合音频内容工作流

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

平台分布

OpenClaw

87.95%
按下载量换算924

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills