Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计提醒

mux-videoMux 视频

Agent Skill

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

总安装

2,399

周安装

98

GitHub Stars

2

下载量

768
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/muxinc/skills --skill mux-video

简介

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

  • 适合组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。
  • 安装前建议检查仓库路径和宿主兼容性,避免功能冲突。

SKILL.md

Mux Video Platform

Comprehensive guide to building video applications with Mux, the developer-first video infrastructure platform. This skill covers video streaming, live streaming, player integrations, analytics with Mux Data, and AI-powered workflows. Whether you are building a video-on-demand platform, live streaming application, or integrating video into an existing product, this documentation provides the patterns and code examples needed to ship quickly.

Key Capabilities

  • Video Hosting and Streaming: Upload, transcode, and deliver video content globally via adaptive bitrate streaming (HLS)
  • Live Streaming: Real-time video broadcasting with RTMP/SRT ingest, low-latency options, and automatic recording
  • Mux Player: Drop-in video player components for web (React, vanilla JS), iOS, and Android with built-in analytics
  • Mux Data: Quality of experience analytics, engagement metrics, and real-time monitoring
  • Content Security: Signed playback URLs, DRM protection (Widevine/FairPlay), and domain restrictions
  • AI Workflows: Automatic chapter generation, video summarization, content moderation, and audio dubbing

Quick Start

Get streaming in five minutes:

  1. Create an API Access Token in the Mux Dashboard with Video Read and Write permissions
  2. Create a video asset from a URL:
curl https://api.mux.com/video/v1/assets \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{ "input": [{ "url": "https://muxed.s3.amazonaws.com/leds.mp4" }], "playback_policy": ["public"] }' \
  -u ${MUX_TOKEN_ID}:${MUX_TOKEN_SECRET}
  1. Play the video using the returned playback ID:
<script src="https://cdn.jsdelivr.net/npm/@mux/mux-player"></script>
<mux-player playback-id="YOUR_PLAYBACK_ID"></mux-player>

See examples/quickstart-stream-video.md for the complete walkthrough with SDK examples in Node.js, Python, Ruby, Go, and PHP.


Reference Documentation

Core Concepts

Foundational knowledge for working with Mux APIs and infrastructure.

FileDescription
reference/mux-fundamentals.mdOrganizations, environments, assets, playback IDs, and API structure
reference/api-authentication.mdAccess tokens, permissions, and secure API request patterns
reference/webhooks.mdWebhook events, signature verification, and event handling
reference/content-security-policy.mdCSP configuration for Mux Player and streaming domains

Mux Player

Drop-in video player components with built-in analytics and adaptive controls.

FileDescription
reference/mux-player-overview.mdPlatform support (web, iOS, Android), installation, and core features
reference/player-setup-integration.mdHTML, React, iframe embed, and native mobile integration
reference/player-customization.mdTheming, CSS variables, custom controls, and branding
reference/player-advanced-features.mdChromecast, AirPlay, DVR mode, picture-in-picture, and quality selection
reference/playback-security.mdSigned URLs, JWT token generation, and playback restrictions
reference/playback-modifiers-resolution.mdResolution capping, bandwidth hints, and playback URL parameters

Video Upload and Asset Management

Methods for getting video content into Mux and configuring assets.

FileDescription
reference/upload-methods.mdURL ingestion, direct uploads, and resumable upload protocols
reference/mux-uploader.mdDrop-in upload components for web with progress and error handling
reference/mobile-upload-sdks.mdiOS and Android upload SDKs for native applications
reference/asset-configuration.mdVideo quality tiers, MP4 support, master access, and encoding settings
reference/text-tracks-and-audio.mdCaptions, subtitles, audio tracks, and language configuration

Live Streaming

Real-time video broadcasting with global ingest and low-latency delivery.

FileDescription
reference/live-streaming-getting-started.mdCreating live streams, stream keys, and basic broadcasting
reference/live-stream-configuration.mdLatency modes, reconnect windows, and recording settings
reference/streaming-protocols-encoder-setup.mdRTMP, RTMPS, SRT protocols and encoder configuration
reference/live-stream-features.mdSimulcasting, live clipping, DVR mode, and embedded captions
reference/live-stream-troubleshooting.mdCommon issues, debugging, and encoder compatibility

Mux Data and Analytics

Quality of experience metrics, engagement tracking, and performance monitoring.

FileDescription
reference/metrics-overview.mdViews, watch time, QoE scores, and metric definitions
reference/dashboards-and-filtering.mdDashboard navigation, filters, and data exploration
reference/custom-metadata-and-dimensions.mdCustom dimensions, video metadata, and viewer identification
reference/data-exports.mdCSV exports, S3 delivery, and raw data access
reference/alerts-and-monitoring.mdAlert configuration, thresholds, and notification channels
reference/privacy-and-configuration.mdData retention, GDPR compliance, and privacy settings

Player Monitoring Integrations

Integrating Mux Data with third-party video players.

FileDescription
reference/web-player-integrations.mdVideo.js, HLS.js, Shaka Player, JW Player, and Bitmovin
reference/mobile-player-integrations.mdAVPlayer (iOS), ExoPlayer (Android), and native SDKs
reference/smart-tv-device-integrations.mdRoku, Fire TV, Apple TV, and smart TV platforms
reference/custom-player-integrations.mdBuilding custom player integrations with Mux Data SDK

Video Features and Tools

Additional video capabilities beyond basic playback.

FileDescription
reference/video-clipping.mdCreating clips from assets, URL-based clipping, and clip management
reference/images-and-thumbnails.mdThumbnail generation, animated GIFs, and timeline previews
reference/custom-domains-and-security.mdCNAME setup, SSL certificates, and branded delivery domains
reference/social-sharing-and-special-features.mdOG tags, Twitter cards, and social media optimization

Framework Integrations

Platform-specific guides for popular web and mobile frameworks.

FileDescription
reference/web-framework-integrations.mdNext.js, Remix, SvelteKit, Nuxt, and other web frameworks
reference/react-native-getting-started.mdSetting up Mux in React Native applications
reference/react-native-video-features.mdVideo playback, uploads, and analytics in React Native
reference/react-native-ui-patterns.mdCommon UI patterns for video apps (feeds, stories, full-screen)
reference/react-native-advanced-topics.mdPerformance optimization, offline playback, and background audio

CMS Integrations and SDKs

Connecting Mux with content management systems and backend services.

FileDescription
reference/cms-integrations.mdSanity, Contentful, WordPress, Strapi, and other CMS platforms
reference/server-side-sdks.mdNode.js, Python, Ruby, PHP, Go, Java, and.NET SDKs
reference/mcp-server.mdMux MCP server for AI assistant integrations

Pricing and Cost Management

Understanding and optimizing Mux costs.

FileDescription
reference/pricing-overview.mdPricing model, billable metrics, and cost calculations
reference/cost-optimization.mdStrategies for reducing encoding, storage, and delivery costs

Examples

Getting Started

FileDescription
examples/quickstart-stream-video.mdComplete guide to uploading and playing your first video
examples/webhook-signature-verification.mdVerifying webhook signatures in Node.js, Python, and Ruby

Player Integration

FileDescription
examples/mux-player-web-setup.mdSetting up Mux Player in HTML, React, and Vue applications
examples/signed-url-playback.mdGenerating and using signed playback URLs with JWTs
examples/drm-protected-playback.mdConfiguring DRM-protected content with Widevine and FairPlay

Video Upload

FileDescription
examples/direct-upload-with-webhooks.mdClient-side uploads with server webhook handling
examples/video-with-captions-and-metadata.mdUploading videos with subtitle tracks and custom metadata

Live Streaming

FileDescription
examples/live-streaming-complete-setup.mdEnd-to-end live streaming implementation
examples/live-captions-and-simulcasting.mdAdding live captions and streaming to multiple platforms

Analytics

FileDescription
examples/custom-analytics-integration.mdAdvanced Mux Data integration with custom dimensions
examples/web-player-integration-example.mdIntegrating Mux Data with Video.js and HLS.js
examples/mobile-player-integration-example.mdiOS and Android analytics SDK integration

Video Features

FileDescription
examples/video-clipping-workflows.mdCreating clips for social sharing and highlights
examples/thumbnail-and-preview-integration.mdDynamic thumbnails and timeline hover previews

React Native

FileDescription
examples/react-native-stories-app.mdBuilding an Instagram-style stories feature
examples/react-native-video-upload-workflow.mdComplete upload flow with progress and background handling

CMS Integration

FileDescription
examples/cms-setup-sanity.mdIntegrating Mux with Sanity CMS

AI Workflows

FileDescription
examples/ai-video-workflows.mdAutomatic chapters, summarization, and tagging with @mux/ai
examples/content-moderation-strategies.mdAI-powered content moderation for user-generated video
examples/video-synchronization.mdSyncing video playback across multiple viewers

Important Notes

API Authentication

All Mux API requests require authentication using a Token ID and Token Secret. API requests must be made from a server environment - the API does not support CORS and credentials should never be exposed in client-side code.

Playback IDs vs Asset IDs

  • Asset IDs are used to manage content via the API (api.mux.com)
  • Playback IDs are used to stream content to viewers (stream.mux.com)
  • An asset can have multiple playback IDs with different policies (public vs signed)

Webhooks vs Polling

Always prefer webhooks over polling to track asset status. Webhooks provide real-time notifications when assets are ready, live streams change state, or uploads complete. Configure webhooks per environment in the Mux Dashboard.

Video Quality Tiers

Mux offers different video quality tiers (basic, plus, premium) that affect encoding quality and pricing. Choose the appropriate tier based on your content type and quality requirements.

Stream Key Security

Live stream keys should be treated as secrets. Anyone with the stream key can broadcast to your live stream. Reset keys immediately if compromised.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.17%
按下载量换算224

Cursor

24.53%
按下载量换算188

Antigravity

18.33%
按下载量换算141

Codex

13.24%
按下载量换算102

Gemini CLI

7.22%
按下载量换算55

OpenCode

3.01%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills