Claude-code-plugins-plus-skills techsmith-core-workflow-b

install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-b" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-skills-techsmith-core-workflow-b && rm -rf "$T"
manifest: plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-b/SKILL.md
source content

TechSmith Core Workflow B

Overview

Camtasia video editing automation: batch rendering, preset management, and template-based production.

Instructions

Step 1: List Available Presets

$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"

Step 2: Multi-Format Export

$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"
}

Step 3: Watermark and Branding

& $producer `
    /i "C:\Projects\tutorial.tscproj" `
    /o "C:\Output\branded.mp4" `
    /preset "MP4 only (up to 1080p)" `
    /watermark "C:\Assets\logo.png"

Error Handling

ErrorCauseSolution
Invalid presetTypo in preset nameUse /listpresets to verify
Render timeoutLong videoIncrease timeout or use async
Missing mediaMoved source filesKeep project and media together

Resources

Next Steps

For common errors, see

techsmith-common-errors
.