Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

digital-singer数字歌手

Agent Skill

digital-singer 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,281

周安装

97

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install digital-singer

简介

将 NuwaAI 数字化身转化为声音驱动的歌唱表演者。

  • 实现口型同步与背景同步的歌唱表演功能。digital-singer 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 适用于音频流程整理、配音素材生成等场景。
  • 需结合原始 README 核验输入输出格式与模型限制。
  • 注意版权素材、人物形象及内容合规性边界。

SKILL.md

name
digital-singer
description
Turn your NuwaAI digital avatar into a singing performer! The avatar sings with lip-synced mouth movements driven by vocal audio, with synchronized background accompaniment. Supports duet/battle mode: avatar sings the first half, user sings the second half with accompaniment. Includes fun scoring and blind box rewards. Powered by NuwaAI humanctrl API. Use when: user wants the digital avatar to sing, karaoke battle, duet mode, or digital human singing.

🎤 Digital Singer — NuwaAI Avatar Singing

Turn your NuwaAI digital avatar into a singing performer with lip-synced mouth movements.

How It Works

Audio files → FFmpeg PCM conversion → NuwaAI humanctrl avatar messages → Avatar sings with lip-sync
                                    + Browser <audio> plays accompaniment in sync

Key concept: Two audio streams work together:

  • speech (vocal-only): Drives the avatar's mouth movements via NuwaAI avatar control messages
  • music (accompaniment): Plays simultaneously via browser <audio> element

Battle Flow

  1. Avatar greets user, lists available songs
  2. User picks a song
  3. Avatar sings the upper half (vocal drives lip-sync + accompaniment plays in sync)
  4. Avatar says "your turn" → accompaniment for lower half plays → user sings along (ASR captures voice)
  5. Battle scoring + blind box reward
  6. Ask to continue

User Preparation (What You Need Before Using)

1. NuwaAI Account (Required)

Sign up at nuwaai.com (free) and create a digital avatar. You need:

  • API Key — from your NuwaAI dashboard
  • Avatar ID — the avatar you want to sing
  • User ID — your NuwaAI user ID

Enter these in the browser interface, or pre-configure in .nuwa-config.json:

{
  "avatarId": "your-avatar-id",
  "apiKey": "your-api-key",
  "userId": "your-user-id"
}

2. LLM API (Required)

The singing host (conversation agent) needs an OpenAI-compatible LLM API. Configure in server.mjs or via environment variables:

  • DASHSCOPE_BASE_URL — API endpoint (default: Dashscope)
  • DASHSCOPE_API_KEY — API key
  • QWEN_MODEL — Model name (default: qwen-plus)

3. Song Audio Files (Required)

Each song needs 3 audio files placed in the skill directory:

FilePurposeExample
{song}高潮上清唱.wavUpper half vocal (a cappella) — drives avatar lip-sync十年高潮上清唱.wav
{song}高潮上伴奏.MP3Upper half accompaniment — plays in sync with avatar十年高潮上伴奏.MP3
{song}高潮下伴奏.MP3Lower half accompaniment — plays when user sings十年高潮下伴奏.MP3

How to prepare these files:

  • Use any audio editing tool (e.g. Audacity, Adobe Audition) to split songs into upper/lower halves
  • Use vocal separation tools (e.g. UVR, Demucs) to extract a cappella (vocal-only) from the upper half
  • Export accompaniment as MP3, vocal as WAV (any FFmpeg-supported format works)
  • Place all files in the skill directory (same folder as server.mjs)

4. Song Registry (Required)

After preparing audio files, register each song in server.mjs SONGS object:

const SONGS = {
  "十年": {
    artist: "陈奕迅",
    acappella_upper: "十年高潮上清唱.wav",
    accomp_upper: "十年高潮上伴奏.MP3",
    accomp_lower: "十年高潮下伴奏.MP3",
  },
  // Add more songs...
};

5. FFmpeg (Required)

Install FFmpeg for audio format conversion:

# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpeg

6. Node.js 18+ (Required)

node --version  # must be >= 18

Quick Start

  1. Complete all preparation steps above
  2. Copy example song files from assets/songs/ to the skill directory:
   cp <skill-dir>/assets/songs/* <skill-dir>/

This includes a ready-to-use demo song: 十年 (陈奕迅) with vocal, upper and lower accompaniment files.

  1. Start the server:
   node <skill-dir>/server.mjs
  1. Open http://localhost:3098 in browser
  2. Enter NuwaAI credentials (if not pre-configured)
  3. Pick a song and start singing!

Included Example Song

The skill ships with one demo song in assets/songs/:

  • 十年高潮上清唱.wav — vocal (a cappella)
  • 十年高潮上伴奏.MP3 — upper half accompaniment
  • 十年高潮下伴奏.MP3 — lower half accompaniment

Copy them to the skill root directory to use. The song "十年" is pre-registered in server.mjs.

NuwaAI Integration

Uses humanctrl WebSocket with ASR enabled. Avatar control message format:

{
  "type": "avatar",
  "data": {
    "content": "",
    "audio": {
      "segment": 0,
      "speech": "<base64 PCM>",
      "music": "<base64 PCM>"
    }
  }
}
  • speech: Vocal-only PCM driving lip-sync (≤10KB per chunk)
  • music: Same as speech for a cappella mode
  • segment: Chunk index, -1 = last chunk
  • Audio: 16kHz mono PCM, base64 encoded

Features

  • 🎤 Avatar lip-sync singing via NuwaAI humanctrl
  • 🎵 Synchronized accompaniment playback
  • 🗣️ ASR voice capture for user singing
  • 🎯 Fun battle scoring system
  • 🎁 Blind box rewards
  • ⏸️ Interruptible speech (not during singing)
  • 📱 Responsive web interface

Requirements

  • Node.js 18+
  • FFmpeg (for audio → PCM conversion)
  • NuwaAI account with avatar
  • Modern browser (WebRTC + microphone)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.91%
按下载量换算726

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills