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

talking-circle谈话圈

Agent Skill

talking-circle 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,988

周安装

472

GitHub Stars

1

下载量

3,852
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install talking-circle

简介

talking-circle 可将头像帧图像与音频合成为动画谈话圈视频。

  • 适用于生成 Telegram 风格的圆形视频消息或文本转视频场景。
  • 支持音频转视频和文本转视频功能,适合多媒体内容制作。
  • 安装前应检查维护状态及是否触发命令执行或文件读写。
  • 建议参考来源仓库了解具体集成方式和限制条件。talking-circle 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
talking-circle
description
>
version
1.0.0
user-invocable
true
argument-hint
[text or audio path]
metadata
{"openclaw":{"emoji":"🎙️","primaryEnv":"ELEVENLABS_API_KEY","requires":{"bins":["python3","ffmpeg"],"env":[]},"os":["darwin","linux"]}}

Talking Circle

Create animated circular avatar videos with lip-sync and blink animations. Takes 4 avatar frame images (neutral, slight open, wide open, eyes closed) and produces a round video with audio-driven mouth movement.

Prerequisites

  • python3 (3.9+)
  • ffmpeg installed and on PATH
  • Optional: ELEVENLABS_API_KEY environment variable (for ElevenLabs text-to-video mode)
  • Optional: SALUTE_SPEECH_AUTH environment variable (for SaluteSpeech text-to-video mode)

Setup

Dependencies are auto-installed into a temporary venv on first run. To install manually:

pip install -r requirements.txt

Mode 1: Audio to Video

Convert existing audio + frame images into an animated talking circle video.

python3 scripts/make_talking_circle_video.py \
  --neutral frames/neutral.png \
  --slight frames/mouth-slight-open.png \
  --wide frames/mouth-wide-open.png \
  --blink frames/eyes-closed.png \
  --audio speech.mp3 \
  --out /tmp/talking-circle.mp4

Mode 2: Text to Video

Generate speech from text via ElevenLabs TTS, then create the animated video.

Requires ELEVENLABS_API_KEY set in environment or passed via --api-key.

python3 scripts/make_text_to_video.py \
  --text "Hello, this is a talking circle demo!" \
  --voice-id pNInz6obpgDQGcFmaJgB \
  --neutral frames/neutral.png \
  --slight frames/mouth-slight-open.png \
  --wide frames/mouth-wide-open.png \
  --blink frames/eyes-closed.png \
  --out /tmp/talking-circle.mp4

Mode 3: Text to Video via SaluteSpeech (Sber)

Generate speech from text via SaluteSpeech TTS (Sber), then create the animated video.

Requires SALUTE_SPEECH_AUTH set in environment or passed via --auth-key. This is a Base64-encoded client_id:client_secret from your SaluteSpeech project.

python3 scripts/make_salute_text_to_video.py \
  --text "Привет, это демонстрация talking circle!" \
  --voice Bys_24000 \
  --neutral frames/neutral.png \
  --slight frames/mouth-slight-open.png \
  --wide frames/mouth-wide-open.png \
  --blink frames/eyes-closed.png \
  --out /tmp/talking-circle.mp4

SaluteSpeech voices

VoiceNameLanguage
Nec_24000Natalia (female)ru-RU
Bys_24000Boris (male)ru-RU
May_24000Martha (female)ru-RU
Tur_24000Taras (male)ru-RU
Ost_24000Alexandra (female)ru-RU
Pon_24000Sergey (male)ru-RU
Kin_24000Kira (female)en-US

Voice Presets

ElevenLabs preset (Sbercat — male)

ParameterValue
--voice-idpNInz6obpgDQGcFmaJgB
--model-ideleven_multilingual_v2
--stability0.15
--similarity-boost0.70
--style0.38
--speed1.20

SaluteSpeech preset (Boris — male, Russian)

ParameterValue
--voiceBys_24000
--audio-formatwav16
--scopeSALUTE_SPEECH_PERS

How to get API keys

ElevenLabs:

  1. Go to ElevenLabs Voice Library.
  2. Pick or clone a voice, copy the voice ID.
  3. Set ELEVENLABS_API_KEY environment variable.

SaluteSpeech (Sber):

  1. Register at developers.sber.ru.
  2. Create a project, get client_id and client_secret.
  3. Encode client_id:client_secret in Base64.
  4. Set SALUTE_SPEECH_AUTH environment variable with the Base64 string.

Alternative TTS engines

The skill also supports any TTS that can produce an audio file. Use Mode 1 (audio-to-video) with audio from any source:

  • OpenAI TTS (openai.audio.speech.create) — generate speech, save to MP3, pass via --audio
  • Local TTS (Coqui, Piper, Silero, etc.) — run locally, save WAV/MP3, pass via --audio
  • Google Cloud TTS, Amazon Polly, Azure TTS — any cloud provider works
# Example: generate audio with any TTS, then animate
python3 scripts/make_talking_circle_video.py \
  --neutral frames/neutral.png \
  --slight frames/mouth-slight-open.png \
  --wide frames/mouth-wide-open.png \
  --blink frames/eyes-closed.png \
  --audio /path/to/speech-from-any-tts.mp3 \
  --out /tmp/talking-circle.mp4

Tell the user: if they don't have an ElevenLabs or SaluteSpeech API key, they can use any other TTS engine — just generate the audio file and pass it to Mode 1. No API key needed for audio-to-video mode.

Frame Image Requirements

You need 4 PNG images of your avatar, all the same resolution (recommended 2048x2048), square aspect ratio:

FrameDescription
neutralMouth closed, eyes open
slightMouth slightly open, eyes open
wideMouth wide open, eyes open
blinkMouth closed, eyes closed

Critical rules

  • All 4 frames must have identical resolution, art style, colors, and character positioning.
  • Only the mouth and eyes should change between frames — head, body, background must stay the same.
  • Do not mix frames from different generation sessions or different styles.

Generating Frames with Image AI

If the user does not have ready-made frames, generate them using an image generation API (DALL-E, Midjourney, Flux, etc.). Follow this workflow:

Step 1: Generate the neutral frame

Generate a shoulder-up portrait of the character. This is the base frame — all other frames must match it exactly.

Example prompt:

Shoulder-up portrait of [CHARACTER DESCRIPTION]. Square composition, clean background,
mouth closed, eyes open, looking at camera. High detail, consistent lighting.

Step 2: Generate remaining 3 frames as edits of neutral

Use image editing / inpainting on the neutral frame to produce the other states. Only modify the mouth and eyes region — everything else must remain pixel-identical.

FrameWhat to changeEdit prompt example
slightMouth slightly open"Mouth slightly open, teeth barely visible, same expression"
wideMouth wide open"Mouth wide open as if saying 'ah', same expression"
blinkEyes closed"Eyes gently closed, mouth closed, same expression"

Step 3: Verify consistency

Before using the frames:

  1. Check that all 4 images have the same resolution.
  2. Overlay them to verify the head/body position hasn't shifted.
  3. If any frame drifts, regenerate it from the neutral base.

Examples

See examples/sbercat/ for a reference character with ready-to-use frame set:

  • Sbercat — 3D-rendered anthropomorphic cat, lavender-blue fur, green eyes, pink nose, green hoodie:

- examples/sbercat/reference.png — character reference - examples/sbercat/neutral.png — mouth closed, eyes open - examples/sbercat/slight.png — mouth slightly open - examples/sbercat/wide.png — mouth wide open - examples/sbercat/blink.png — eyes closed - examples/sbercat/example.mp4 — finished talking-circle video

To test with the included Sbercat frames:

python3 scripts/make_talking_circle_video.py \
  --neutral examples/sbercat/neutral.png \
  --slight examples/sbercat/slight.png \
  --wide examples/sbercat/wide.png \
  --blink examples/sbercat/blink.png \
  --audio your-audio.mp3 \
  --out /tmp/talking-circle.mp4

Post-installation message

After installing this skill, inform the user:

Skill "talking-circle" installed. To create talking-circle videos, I need a character avatar. Please send me a reference image of your character on a white/clean background — a shoulder-up portrait works best (square aspect ratio, high resolution). From this reference I will generate 4 frame images (mouth states + blink) and you'll be ready to create animated video circles. For speech, I can use ElevenLabs TTS (requires ELEVENLABS_API_KEY), SaluteSpeech from Sber (requires SALUTE_SPEECH_AUTH), or you can provide your own audio file. Any TTS engine works — OpenAI TTS, Whisper, Coqui, Piper, Google TTS, etc.

First use: generating frame images

IMPORTANT — before the skill can create videos, the 4 frame images must exist. If the user does not already have frames, you MUST generate them first.

Workflow for the assistant

  1. Ask the user for a reference image of their character (or use a character description). The image should be a shoulder-up portrait on a white or clean background, square aspect ratio.
  2. Generate the neutral frame using image generation (DALL-E, Flux, Midjourney, etc.):

- Prompt: "Shoulder-up portrait of [CHARACTER], white background, mouth closed, eyes open, looking at camera, square composition, high detail" - Save as neutral.png.

  1. Generate the 3 remaining frames via inpainting/editing of the neutral frame. Only modify the mouth/eyes region — everything else must remain pixel-identical:

- slight.png — edit mouth region: "Mouth slightly open, teeth barely visible" - wide.png — edit mouth region: "Mouth wide open as if saying 'ah'" - blink.png — edit eyes region: "Eyes gently closed, mouth closed"

  1. Verify consistency: all 4 images must have the same resolution, identical head/body position, and only differ in mouth/eyes.
  2. Save the frames to a persistent location (e.g. the skill's working directory or a user-specified path). These frames are reused for every future video.
  3. Confirm to the user that frames are ready and the skill is operational.

Do not skip this step. Without the 4 frame images, the video scripts will fail.

Guardrails

  • Before running any script, verify that python3 (3.9+) and ffmpeg are on PATH. If missing, instruct the user to install them.
  • Never delete or overwrite the user's original frame images.
  • Do not use this skill for full-motion video editing, face tracking, or real-time lipsync — it only works with 4 static frame images.
  • If ElevenLabs or SaluteSpeech API returns an error (401, 429, etc.), explain the error clearly to the user instead of retrying silently.

Failure handling

  • If ffmpeg is not found: tell the user to install it (brew install ffmpeg on macOS, apt install ffmpeg on Linux).
  • If ELEVENLABS_API_KEY is missing and the user wants text-to-video: suggest SaluteSpeech (Mode 3) or Mode 1 with audio from another TTS.
  • If SALUTE_SPEECH_AUTH is missing and the user wants SaluteSpeech: explain how to register at developers.sber.ru and get credentials.
  • If frame images have different resolutions: warn the user and ask them to fix the frames before proceeding.
  • If the output video is empty or zero bytes: show the ffmpeg error log and suggest checking input files.

Parameters Reference

Video output

ParameterDefaultDescription
--size720Output video size in pixels
--diameter640Circle diameter within the video
--fps30Frames per second

Blink timing

ParameterDefaultDescription
--blink-start1.1Seconds before first blink
--blink-every3.8Seconds between blinks
--blink-duration-frames4Number of frames per blink

Amplitude thresholds (audio-to-video)

ParameterDefaultDescription
--amp-low1200RMS below this = neutral (closed mouth)
--amp-high2600RMS above this = wide open mouth

ElevenLabs TTS settings (make_text_to_video.py)

ParameterDefaultDescription
--voice-id(required)ElevenLabs voice ID
--model-ideleven_multilingual_v2ElevenLabs model
--stability0.50Voice stability
--similarity-boost0.75Voice similarity boost
--style0.00Style exaggeration
--speed1.00Speech speed

SaluteSpeech TTS settings (make_salute_text_to_video.py)

ParameterDefaultDescription
--voiceBys_24000SaluteSpeech voice (see voices table above)
--audio-formatwav16Audio format: opus, wav16, pcm16
--scopeSALUTE_SPEECH_PERSOAuth scope (PERS for personal, CORP for corporate)
--auth-key$SALUTE_SPEECH_AUTHBase64-encoded client_id:client_secret

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.31%
按下载量换算3,286

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills