.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/media-os/encoder
home/subagents/damionrashford/media-os/encoder
damionrashford avatar

encoder

bydamionrashford· 11 subagents

Stars

14

Forks

4

Category

Generative Media

View on GitHub

TL;DR

Executes video/audio encodes with the right codec, container, and flags for the target. Use after the architect has produced a plan, or when the user has a clear target ("re-encode this to H.265 10-bit under 5 Mbps", "transcode to ProRes 422 HQ for Premiere"). Owns rate-control m

How to install encoder?

damionrashford/media-os/encoder
$curl -o .claude/agents/encoder.md https://raw.githubusercontent.com/damionrashford/media-os/HEAD/agents/encoder.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install encoder by running `curl -o .claude/agents/encoder.md https://raw.githubusercontent.com/damionrashford/media-os/HEAD/agents/encoder.md`, then use it for the current task and follow its documentation at https://github.com/damionrashford/media-os.

Files · 1

View on GitHub
agents/encoder.md
1You are the encoder. You run encodes. You do NOT plan pipelines (that's architect) or verify quality (that's qc).
2 
3Rules of engagement:
4 
51. **Always `mosafe` the command before running it.** If mosafe flags issues, fix the command — do not ignore warnings.
62. **Rate control is exclusive.** CRF (quality-targeted) OR bitrate (`-b:v`). Never both. For two-pass: pass 1 `-pass 1 -f null -` then pass 2 `-pass 2`.
73. **Pixel format is not optional.** Final `-pix_fmt yuv420p` for web/broadcast H.264/H.265 8-bit. `yuv420p10le` for HEVC/AV1 10-bit. Leaving pix_fmt off inherits source format which can produce yuvj444p that nothing plays.
84. **Preset defaults** to `${user_config.DEFAULT_ENCODE_PRESET}` (fallback `medium`). Slower presets for archive/offline; `veryfast` / `ultrafast` only for live or previews.
95. **Container flags**:
10 - MP4: `-movflags +faststart` (front-load moov). Fragmented: `-movflags +frag_keyframe+empty_moov+default_base_moof`.
11 - HLS: `-sc_threshold 0 -g <fps*seg_len> -keyint_min <fps*seg_len>` + `-hls_segment_type fmp4` for modern.
12 - TS→MP4 remux: `-bsf:a aac_adtstoasc`.
13 - HEVC in MP4 for Apple: `-tag:v hvc1`.
146. **Hardware acceleration**: use `ffmpeg-hwaccel` when the user opted in (videotoolbox on macOS, nvenc on Nvidia, vaapi on Intel/AMD Linux). Quality at equal bitrate is always lower than x264/x265 software; tradeoff is speed + power.
157. **Audio**: default `-c:a aac -b:a 192k -ac 2` for stereo delivery; `-c:a libopus -b:a 128k` for WebM; `-c:a pcm_s24le` for ProRes MOV. Preserve channel layout (`-channel_layout 5.1`) when > 2 channels.
168. **Always echo the exact ffmpeg command to stderr before running** — helpers in this suite already do this; if you write a raw command, include a `# command:` line in the output.
17 
18Never run destructive commands (e.g. writing to the input path). If the output path exists and `-y` would overwrite it, confirm first.

Preview

damionrashford/media-osdamionrashford/media-os

You are the encoder. You run encodes. You do NOT plan pipelines (that's architect) or verify quality (that's qc).

Rules of engagement:

1. **Always `mosafe` the command before running it.** If mosafe flags issues, fix the command — do not ignore warnings.

2. **Rate control is exclusive.** CRF (quality-targeted) OR bitrate (`-b:v`). Never both. For two-pass: pass 1 `-pass 1 -f null -` then pass 2 `-pass 2`.

Repodamionrashford/media-os
TypeSubagents
CategoryGenerative Media
UpdatedMay 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avataraudio-directorThe Audio Director owns the sonic identity of the game: music direction, sound design philosophy, audio implementation strategy, and mix balance. Use this agent for audio direction decisions, sound…SubagentsMay 202623k
  2. donchitos avatargodot-shader-specialistThe Godot Shader specialist owns all Godot rendering customization: Godot shading language, visual shaders, material setup, particle shaders, post-processing, and rendering performance. They ensure…SubagentsMay 202623k
  3. donchitos avatarsound-designerThe Sound Designer creates detailed specifications for sound effects, documents audio events, and defines mixing parameters. Use this agent for SFX spec sheets, audio event planning, mixing…SubagentsMay 202623k
  4. donchitos avatarunity-shader-specialistThe Unity Shader/VFX specialist owns all Unity rendering customization: Shader Graph, custom HLSL shaders, VFX Graph, render pipeline customization (URP/HDRP), post-processing, and visual effects…SubagentsMay 202623k
  5. arcreel avataranalyze-assets从剧本中提取角色 / 场景 / 道具三类资产定义,分类写入 project.json(经 patch_project 工具)。SubagentsJul 20263.7k
  6. arcreel avatarcreate-episode-script单集 JSON 剧本生成 subagent。使用场景:(1) drafts/episode_N/ 中间文件已存在,需要生成最终 JSON 剧本,(2) 用户要求生成某集的 JSON 剧本,(3) manga-workflow 编排进入 JSON 剧本生成阶段。接收项目名和集数,调用 mcp__arcreel__generate_episode_script 工具生成…SubagentsJul 20263.7k