Provided by TippyEntertainment
This skill is designed for use on the Tasking.tech agent platform (https://tasking.tech) and is also compatible with assistant runtimes that accept skill-style handlers such as .claude, .openai, and .mistral. Use this skill for both Claude code and Tasking.tech agent source.
comfyui-audio-creator
Summary
Generate background music and ambience that matches one or more video scenes produced by comfyui-video-generator. This skill does not handle spoken dialogue or narration; use comfyui-voice-generator for any voice work.
When to Use
- After video clips exist and the user wants music or ambient soundscapes for them.
- The user asks for background tracks for a trailer, promo, or game scene.
- You need loopable ambience (e.g., city at night, fantasy forest, sci‑fi engine room).
Inputs to Collect
Ask the user (or previous skill) for:
- Audio type
music or ambience (no voice).
- Target scene(s)
- Reference to clips from
comfyui-video-generator (IDs, durations, moods).
- Style / genre / mood
- Music: orchestral, synthwave, lofi, rock, cinematic, etc.
- Ambience: forest, city, sci‑fi engine, horror, cozy home, etc.
- Duration
- Typically match the clip length or a loopable segment (e.g., 15–60 seconds).
- Loopability
- Whether the audio should seamlessly loop.
- Tempo / intensity (for music, optional)
- Slow/medium/fast; low/medium/high intensity.
- Format & sample rate
- Default: 16‑bit WAV, 44.1 kHz or 48 kHz, stereo.
Expected Behavior
- Map the request into structured audio parameters:
audioType, genre, mood, durationSeconds, loopable, targetScenes, tempo, intensity.
- Select the appropriate ComfyUI or connected audio workflow:
- Music generator or ambience generator (no TTS here).
- Generate audio in one or more segments:
- Ensure total duration covers the referenced scenes.
- For loops, ensure clean loop points.
- Collect:
audioUrl / audioPath
durationSeconds
format, sampleRate, channels
- Tags/metadata (genre, mood, bpm if known).
- Return a concise summary plus technical details.
Output Format (to the caller)
Return a structure containing:
description: e.g. “Loopable synthwave track for the opening scene.”
audioUrl or audioPath
durationSeconds
format
sampleRate
channels
loopable: boolean
tags: list of strings (genre, mood, tempo)
Orchestration Notes
Typical pipeline:
comfyui-video-generator → create scenes.
comfyui-audio-creator → create background music/ambience for those scenes.
comfyui-voice-generator → add narration or dialogue.
comfyui-soundfx-creator → layer in moment‑specific sound effects.
This skill focuses on non‑voice background audio so other skills can handle speech and SFX cleanly.
1---2name: comfyui-audio-creator3description: Generate **background music** and **ambience** that matches one or more video scenes produced by `comfyui-video-generator`. This skill does *not* handle spoken dialogue or narration; use `comfyui-voice-generator` for any voice work.4---5# Provided by TippyEntertainment6# https://github.com/tippyentertainment/skills.git789This skill is designed for use on the Tasking.tech agent platform (https://tasking.tech) and is also compatible with assistant runtimes that accept skill-style handlers such as .claude, .openai, and .mistral. Use this skill for both Claude code and Tasking.tech agent source.101112# comfyui-audio-creator1314## Summary1516Generate **background music** and **ambience** that matches one or more video scenes produced by `comfyui-video-generator`. This skill does *not* handle spoken dialogue or narration; use `comfyui-voice-generator` for any voice work.1718---1920## When to Use2122- After video clips exist and the user wants **music** or **ambient soundscapes** for them.23- The user asks for **background tracks** for a trailer, promo, or game scene.24- You need loopable ambience (e.g., city at night, fantasy forest, sci‑fi engine room).2526---2728## Inputs to Collect2930Ask the user (or previous skill) for:3132- **Audio type**33 - `music` or `ambience` (no voice).34- **Target scene(s)**35 - Reference to clips from `comfyui-video-generator` (IDs, durations, moods).36- **Style / genre / mood**37 - Music: orchestral, synthwave, lofi, rock, cinematic, etc.38 - Ambience: forest, city, sci‑fi engine, horror, cozy home, etc.39- **Duration**40 - Typically match the clip length or a loopable segment (e.g., 15–60 seconds).41- **Loopability**42 - Whether the audio should seamlessly loop.43- **Tempo / intensity (for music, optional)**44 - Slow/medium/fast; low/medium/high intensity.45- **Format & sample rate**46 - Default: 16‑bit WAV, 44.1 kHz or 48 kHz, stereo.4748---4950## Expected Behavior51521. Map the request into structured audio parameters:53 - `audioType`, `genre`, `mood`, `durationSeconds`, `loopable`, `targetScenes`, `tempo`, `intensity`.542. Select the appropriate ComfyUI or connected audio workflow:55 - Music generator or ambience generator (no TTS here).563. Generate audio in one or more segments:57 - Ensure total duration covers the referenced scenes.58 - For loops, ensure clean loop points.594. Collect:60 - `audioUrl` / `audioPath`61 - `durationSeconds`62 - `format`, `sampleRate`, `channels`63 - Tags/metadata (genre, mood, bpm if known).645. Return a concise summary plus technical details.6566---6768## Output Format (to the caller)6970Return a structure containing:7172- `description`: e.g. “Loopable synthwave track for the opening scene.”73- `audioUrl` or `audioPath`74- `durationSeconds`75- `format`76- `sampleRate`77- `channels`78- `loopable`: boolean79- `tags`: list of strings (genre, mood, tempo)8081---8283## Orchestration Notes8485Typical pipeline:86871. `comfyui-video-generator` → create scenes. 882. `comfyui-audio-creator` → create background music/ambience for those scenes. 893. `comfyui-voice-generator` → add narration or dialogue. 904. `comfyui-soundfx-creator` → layer in moment‑specific sound effects.9192This skill focuses on **non‑voice** background audio so other skills can handle speech and SFX cleanly.