Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

talking-head-video会说话的头视频

Agent Skill

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

总安装

2,566

周安装

108

GitHub Stars

12

下载量

899
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:talking-head-video(会说话的头视频)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/talking-head-video
安装命令:
npx skills add https://github.com/eachlabs/skills --skill talking-head-video
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill talking-head-video

简介

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。

  • 适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需确认分辨率、时长、素材路径和导出格式;涉及外部素材时应核对版权授权。
  • 安装前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • talking-head-video 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Talking Head Video Generation

Generate professional talking head videos using each::sense. This skill transforms static photos into lifelike talking videos, creates AI presenters from scripts, and enables lip-sync capabilities for various use cases.

Features

  • AI Presenter from Script: Generate talking head videos from text scripts
  • Photo to Talking Video: Animate static portraits with speech
  • Lip Sync to Audio: Synchronize lip movements to existing audio tracks
  • Corporate Spokesperson: Professional business presentation videos
  • Training Video Presenter: Educational and onboarding content
  • News Anchor Style: Broadcast-quality presenter videos
  • Product Explainer: Demo and tutorial presenter videos
  • Multi-Language Support: Generate content in multiple languages
  • Custom Avatar Presenter: Personalized AI spokesperson creation
  • Emotional Expression Control: Varied expressions and delivery styles

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video of a professional presenter saying: Welcome to our company. We are excited to have you join our team today."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Video Output Specifications

TypeResolutionAspect RatioDurationUse Case
Portrait1080x19209:16Up to 60sSocial media, mobile
Landscape1920x108016:9Up to 60sYouTube, presentations
Square1080x10801:1Up to 60sSocial media feed
Headshot720x7201:1Up to 30sQuick clips, GIFs

Use Case Examples

1. AI Presenter from Script

Generate a talking head video from a text script with an AI-generated presenter.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video with a professional female presenter in business attire. She should say: Welcome to our quarterly earnings report. This quarter we achieved record growth across all market segments. Our revenue increased by 25 percent compared to last year. Speaking style should be confident and authoritative."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

2. Photo to Talking Video

Transform a static portrait photo into an animated talking video.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Animate this photo to create a talking head video. The person should say: Hello, I am Dr. Sarah Chen, and I will be guiding you through todays medical seminar. Please ensure you have your notes ready. Make the lip movements natural and add subtle head movements."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/portrait-photo.jpg"]
  }'

3. Lip Sync to Audio

Synchronize a portrait photo or video with an existing audio track.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a lip-sync video using this portrait photo and audio file. Synchronize the lip movements perfectly to the speech. Add natural blinking and subtle expressions that match the audio tone."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/presenter-headshot.jpg"],
    "audio_url": "https://example.com/voiceover-script.mp3"
  }'

4. Corporate Spokesperson Video

Create professional business spokesperson content for corporate communications.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Generate a corporate spokesperson video. Middle-aged professional male in a suit, neutral office background. Script: At TechCorp, we believe in innovation that matters. Our commitment to sustainability drives everything we do. Join us in building a better tomorrow. Delivery should be warm, trustworthy, and professional. 16:9 aspect ratio for website embedding."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

5. Training Video Presenter

Generate educational and onboarding video content with an AI instructor.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a training video presenter. Friendly instructor appearance, casual professional attire. Script: Welcome to module three of your safety training. Today we will cover emergency procedures. First, locate your nearest exit. Second, familiarize yourself with the evacuation route. Remember, safety is everyones responsibility. Tone should be clear, encouraging, and educational."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. News Anchor Style Video

Create broadcast-quality news presenter videos.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Generate a news anchor style talking head video. Professional female news presenter, polished appearance, studio background with subtle graphics. Script: Good evening. Tonight we bring you breaking coverage of the technology summit where world leaders announced new AI guidelines. Industry experts call this a historic moment. Speaking style should be authoritative, clear, and broadcast-professional."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Product Explainer Presenter

Create product demonstration and explainer videos with an AI host.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a product explainer video with a talking head presenter. Young, energetic tech reviewer appearance. Script: Let me show you the amazing features of the new SmartWatch Pro. This device tracks your heart rate, monitors sleep patterns, and even measures stress levels. The battery lasts seven days on a single charge. Its a game-changer for fitness enthusiasts. Delivery should be enthusiastic and engaging, like a YouTube tech review."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Multi-Language Presenter

Generate talking head content in multiple languages for international audiences.

# English version
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video in English. Professional presenter appearance. Script: Welcome to our global platform. We connect businesses across continents. Keep the same presenter appearance for consistency with other language versions."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "multilang-campaign-001",
    "mode": "max"
  }'

# Spanish version (same session for consistency)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create the same talking head video but in Spanish. Use the same presenter from the previous video. Script: Bienvenidos a nuestra plataforma global. Conectamos empresas a traves de los continentes. Match the tone and delivery style of the English version."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "multilang-campaign-001",
    "mode": "max"
  }'

# French version (same session for consistency)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now create the French version with the same presenter. Script: Bienvenue sur notre plateforme mondiale. Nous connectons les entreprises a travers les continents. Maintain visual consistency with previous versions."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "multilang-campaign-001",
    "mode": "max"
  }'

9. Custom Avatar Presenter

Create a personalized AI avatar spokesperson for consistent brand representation.

# Initial avatar creation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a custom AI avatar presenter for our brand. Female, late 20s, professional but approachable appearance, dark hair, wearing a navy blazer. This will be our consistent brand spokesperson. Generate a reference image first."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "brand-avatar-001",
    "mode": "max"
  }'

# Use avatar for video
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now create a talking head video using this avatar. Script: Hi, I am Maya, your AI assistant from TechBrand. I am here to help you get the most out of our products. Lets explore what we can do together. Keep her appearance consistent with the avatar we created."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "brand-avatar-001",
    "mode": "max"
  }'

10. Emotional Expression Variations

Generate talking head videos with specific emotional expressions and delivery styles.

# Empathetic customer service
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video with empathetic expression. Customer service representative appearance. Script: We understand this has been a frustrating experience for you. Your satisfaction is our top priority. Let me personally ensure we resolve this issue today. Expression should convey genuine concern, understanding, and warmth. Soft, caring tone."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "expression-variations",
    "mode": "max"
  }'

# Excited product launch
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Now create a talking head video with excited, energetic expression. Same presenter. Script: I am thrilled to announce our biggest launch ever! This is the moment weve all been waiting for. Get ready to experience something incredible. Expression should show genuine excitement, big smile, energetic delivery with dynamic gestures."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "expression-variations",
    "mode": "max"
  }'

# Serious announcement
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video with serious, professional expression. Same presenter. Script: We need to address some important changes to our policies. Effective immediately, all accounts will require two-factor authentication. This measure protects your data and ensures platform security. Expression should be serious, authoritative, but not alarming. Measured, deliberate delivery."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "expression-variations",
    "mode": "max"
  }'

Best Practices

Script Writing

  • Keep it conversational: Write scripts as natural speech, not formal text
  • Use contractions: "We're" instead of "We are" for natural delivery
  • Break into segments: For longer content, split into multiple shorter clips
  • Include pauses: Use commas and periods to indicate natural pauses
  • Avoid jargon: Unless your audience expects technical terminology

Visual Quality

  • High-resolution source: Use clear, well-lit portrait photos for lip-sync
  • Front-facing angle: Best results with subjects looking at camera
  • Neutral expression: Starting images work best with neutral or slight smile
  • Clean background: Simpler backgrounds produce cleaner results

Audio Considerations

  • Clear audio source: Use high-quality audio for lip-sync features
  • Consistent volume: Normalize audio levels before processing
  • Natural pace: Speech that's too fast may affect lip-sync quality

Brand Consistency

  • Use session_id: Maintain consistency across multiple videos
  • Document appearance: Keep notes on presenter descriptions for future use
  • Standardize backgrounds: Use consistent settings for brand recognition

Prompt Tips for Talking Head Videos

When creating talking head content, include these details in your prompt:

  1. Presenter Appearance: Age, gender, attire, professional style
  2. Script: The exact text to be spoken
  3. Tone/Delivery: Professional, friendly, energetic, serious, etc.
  4. Background: Office, studio, neutral, custom environment
  5. Aspect Ratio: 16:9, 9:16, or 1:1 based on platform
  6. Emotional Expression: Neutral, happy, serious, empathetic
  7. Language: Specify language and accent if needed

Example Prompt Structure

"Create a talking head video with [presenter description].
Background: [setting/environment].
Script: [exact text to be spoken].
Delivery style: [tone and expression].
Format: [aspect ratio] for [platform/use case]."

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal production videos, client deliverablesSlowerHighest
ecoQuick drafts, script testing, concept reviewFasterGood

Multi-Turn Video Iteration

Use session_id to iterate on talking head videos:

# Initial video
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a talking head video with a professional presenter for a tech company intro"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "company-intro-video"
  }'

# Iterate based on feedback
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Make the presenter look younger and more approachable, change to casual business attire"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "company-intro-video"
  }'

# Update script
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Same presenter, but change the script to: Hey there! Welcome to InnovateTech. Were a team of passionate builders creating the future of AI. Ready to join us?"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "company-intro-video"
  }'

Video Series Generation

Create consistent video series for courses or campaigns:

# Module 1
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a training series presenter. Instructor appearance, friendly and knowledgeable. Module 1 script: Welcome to the Python fundamentals course. In this first module, we will cover variables and data types. By the end, you will write your first Python program."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "python-course-series",
    "mode": "max"
  }'

# Module 2 (same presenter)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Same instructor for Module 2. Script: Welcome back. Today we dive into control flow. You will learn about if statements, loops, and how to make your programs make decisions. Lets get started."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "python-course-series",
    "mode": "max"
  }'

# Module 3 (same presenter)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Continue with Module 3, same instructor. Script: Great progress so far. Module 3 covers functions. Functions help you organize code and avoid repetition. This is where your code starts to feel professional."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "python-course-series",
    "mode": "max"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with content policies
TimeoutComplex generationSet client timeout to minimum 10 minutes
Low quality source imageImage too small or blurryUse high-resolution, clear portrait photos
Audio sync issuesAudio quality problemsUse clear, consistent audio files

Related Skills

  • each-sense - Core API documentation
  • voice-audio - Voice generation and audio processing
  • video-generation - General video creation
  • image-generation - Portrait and avatar image creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算325

Claude

27.53%
按下载量换算247

Cursor

17.94%
按下载量换算161

Gemini CLI

8.78%
按下载量换算79

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills