Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

mux-videoMux 视频

Agent Skill

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

总安装

62,595

周安装

2,557

GitHub Stars

1

下载量

20,047
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mux-video

简介

用于设计、摄取、转码/打包、播放 ID 策略、实时流媒体、剪辑和 Mux 数据可观察性的 Mux 视频基础设施技能。在构建或操作基于 Mux 的视频管道、实时工作流程、播放安全或诊断播放问题时使用。

SKILL.md

name
mux-video
description
Mux Video infrastructure skill for designing, ingesting, transcoding/packaging, playback ID policy, live streaming, clipping, and observability with Mux Data. Use when architecting or operating Mux-based video pipelines, live workflows, playback security, or diagnosing playback issues.

Mux Video (Optimal)

Skill Domain: Video Infrastructure & Delivery Primary Platform: Mux Target Level: Senior / Staff / Platform Architect Philosophy: Video is infrastructure. Reliability beats novelty. Analytics validate reality.


0. Prime Directive

Mux Video exists to deliver video correctly, everywhere, under real-world conditions — not to feel fast in development.

All decisions optimize for:

  • playback reliability
  • predictable latency
  • measurable experience
  • operational sanity

1. Canonical Mental Model

What Mux Video Is

  • Managed video pipeline: ingest → transcode → package → distribute → secure
  • Abstracts FFmpeg complexity, CDN orchestration, ABR logic, and global delivery variance

What Mux Video Is Not

  • A CMS
  • A player
  • A social platform
  • A monetization engine

2. Asset Model (Source of Truth)

Assets

  • Canonical representation of media
  • Immutable once created
  • Represent media, not intent
  • Spawn many playback surfaces

Design Rule

  • One asset → many experiences

Asset Lifecycle

  • Ingest (upload or live record)
  • Transcode
  • Package (HLS / DASH)
  • Expose via Playback IDs
  • Observe via Mux Data

3. Control Planes (Separation of Concerns)

Mux controls:

  • ingest stability
  • transcoding
  • packaging
  • global delivery

You control:

  • identity
  • entitlements
  • playback authorization
  • business rules
  • monetization logic

Failure to respect control planes causes:

  • security leaks
  • brittle playback
  • un-debuggable outages

4. Ingest Strategy (Critical)

On-Demand Ingest

  • File upload (API or direct upload)
  • Deterministic quality
  • Preferred for premium content

Live Ingest

  • RTMP only (by design)
  • Encoder quality determines everything downstream

Live Rule

  • If the encoder is unstable, the stream is already lost

Encoder Best Practices (Non-Negotiable)

  • Constant frame rate
  • GOP ≤ 2s (especially if clipping)
  • Stable bitrate ladder
  • Clean audio track

5. Encoding & Renditions

Mux automatically:

  • Generates adaptive bitrate ladders
  • Selects codecs
  • Tunes for device compatibility

Encoding Truth

  • Mux can’t fix a bad source — only distribute it efficiently

6. Playback IDs (Exposure Layer)

Playback IDs Are Access Keys

  • Define who can watch, for how long, and under what policy
  • Do not modify the asset

Playback Policies

  • public → open access
  • signed → controlled access

Security Rule

  • Secure the Playback ID, not the asset

7. Playback Policy Decision Guide

Use public when:

  • content is free or marketing
  • no revenue or rights risk exists
  • embedding is unrestricted

Use signed when:

  • content is premium
  • playback must expire
  • access is user, geo, or entitlement based
  • clips have monetization value

8. Playback URLs & Delivery

Mux delivers:

  • HLS (.m3u8)
  • DASH (.mpd)
  • Thumbnails
  • Storyboards

Mux handles:

  • CDN selection
  • regional routing
  • device compatibility

Latency Philosophy

  • On-demand → stability > speed
  • Live → latency is a tradeoff curve
  • There is no free low-latency lunch

9. Live Streaming (Operational Reality)

Live is a distributed failure generator. Expect:

  • packet loss
  • dropped frames
  • network variance
  • device heterogeneity

Mux mitigates — it does not eliminate.

Live Best Practices

  • Always auto-record
  • Always monitor ingest
  • Always test encoder profiles
  • Never assume “it’ll be fine”

10. Live Latency Reality

  • Ultra-low latency increases failure sensitivity
  • Lower latency reduces buffer safety
  • Buffering is a reliability feature, not a bug

Choose latency based on:

  • audience tolerance
  • interaction requirements
  • failure cost

11. Asset Clipping (First-Class Skill)

Clipping Model

Clips are derivative assets defined by:

  • source asset
  • start_time
  • end_time

Rules

  • Source asset is immutable
  • Clips are disposable
  • Clips have independent analytics

Why Clipping Matters

  • highlights
  • previews
  • modular content
  • monetization tiers
  • social repurposing

Precision Constraint

Clip accuracy depends on keyframe placement and encoder GOP size. Design accordingly.


12. Player Responsibility Boundary

Mux delivers streams. The player renders video, reports telemetry, and controls UX.

Rule

  • A bad player can sabotage a perfect pipeline

13. Observability Hook (Mux Data Dependency)

Mux Video without Mux Data is a blind system.

Requirement

Every production playback must:

  • report sessions
  • surface QoE metrics

No exceptions.


14. Observability Escalation Ladder

  1. Playback failure rate increase
  2. Startup time regression
  3. Rebuffer ratio spike
  4. Device or browser correlation
  5. Region-specific anomalies
  6. Ingest window correlation

If you start debugging elsewhere, you’re guessing.


15. Operational Playbooks

Playback Issues

  • Validate playback ID
  • Check startup time
  • Inspect error rates
  • Segment by device and browser
  • Correlate with ingest timing

Live Stream Failure

  • Inspect encoder logs
  • Validate RTMP stability
  • Compare bitrate ladder output
  • Check regional impact
  • Fallback to recording

16. Anti-Patterns

  • Treating assets like content objects
  • Editing video “in Mux”
  • Ignoring encoder configuration
  • Using public playback IDs for premium content
  • Shipping unobserved video

17. Cost Reality

Mux optimizes delivery cost.

You control:

  • asset volume
  • clip proliferation
  • playback duration
  • entitlement abuse

Unbounded playback equals silent spend.


18. Scaling Model

Mux scales:

  • ingest
  • transcoding
  • delivery

You scale:

  • auth
  • identity
  • entitlements
  • metadata
  • business logic

Mux provides delivery truth. OpenClaw provides ownership, rights, access, and monetization intelligence.


19. Operational Fluency Signals

You’ve mastered Mux Video when you can:

  • diagnose playback failures from metrics alone
  • design live streams for failure tolerance
  • atomize long-form content into clips at scale
  • secure playback without user friction
  • treat video as infrastructure, not media

20. Extension Points (Next Skills)

  • Mux Data (deep analytics)
  • Live highlight automation
  • Signed playback architectures
  • Clip-to-revenue attribution
  • AI-driven QoE optimization

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.42%
按下载量换算19,530

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills