From techsmith-pack
Automates Camtasia batch rendering, preset management, multi-format exports, and watermarking with PowerShell. For TechSmith video editing and screen capture automation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/techsmith-pack:techsmith-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Camtasia video editing automation: batch rendering, preset management, and template-based production.
Camtasia video editing automation: batch rendering, preset management, and template-based production.
$producer = "C:\Program Files\TechSmith\Camtasia 2025\CamtasiaProducer.exe"
& $producer /listpresets
# Common presets:
# - "MP4 - Smart Player (up to 1080p)"
# - "MP4 only (up to 1080p)"
# - "Audio Only (M4A)"
# - "Custom Production Settings"
$project = "C:\Projects\tutorial.tscproj"
$formats = @(
@{ Preset = "MP4 only (up to 1080p)"; Ext = "mp4" },
@{ Preset = "Audio Only (M4A)"; Ext = "m4a" }
)
foreach ($fmt in $formats) {
$output = "C:\Output\tutorial.$($fmt.Ext)"
& $producer /i "$project" /o "$output" /preset "$($fmt.Preset)"
Write-Host "Rendered: $output"
}
& $producer `
/i "C:\Projects\tutorial.tscproj" `
/o "C:\Output\branded.mp4" `
/preset "MP4 only (up to 1080p)" `
/watermark "C:\Assets\logo.png"
| Error | Cause | Solution |
|---|---|---|
| Invalid preset | Typo in preset name | Use /listpresets to verify |
| Render timeout | Long video | Increase timeout or use async |
| Missing media | Moved source files | Keep project and media together |
For common errors, see techsmith-common-errors.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin techsmith-packProvides PowerShell patterns for Snagit COM API screen captures and Camtasia batch rendering. Use for TechSmith screen capture and video editing automation.
Generates walkthrough videos from Stitch projects using Remotion with smooth transitions, zooming, and text overlays. Useful for app design demos and presentations.
Full video production workflow for Remotion projects. Teaches how to orchestrate MCP tools (TTS, music, SFX, stock footage, video analysis) into complete Remotion compositions. Use this skill whenever producing a video that needs audio, voiceovers, music, stock footage, or analyzing existing video files.