Skip to content
Skillv1.0.0

techsmith-core-workflow-b

TechSmith core workflow b for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: "techsmith core workflow b".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/techsmith-core-workflow-b/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill techsmith-core-workflow-b. Copyright stays with the author (MIT).

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

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

Resources

Next Steps

For common errors, see techsmith-common-errors.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-cor-53c547/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-techsmith-cor-53c547.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-techsmith-cor-53c547",
  "kind": "skill",
  "name": "techsmith-core-workflow-b",
  "description": "TechSmith core workflow b for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: \"techsmith core workflow b\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "screen-capture",
      "video",
      "techsmith",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "TechSmith core workflow b for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: \"techsmith core workflow b\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/techsmith-core-workflow-b/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/techsmith-core-workflow-b/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/techsmith-core-workflow-b/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(powershell:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# TechSmith Core Workflow B\n\n## Overview\n\nCamtasia video editing automation: batch rendering, preset management, and template-based production.\n\n## Instructions\n\n### Step 1: List Available Presets\n\n```powershell\n$producer = \"C:\\Program Files\\TechSmith\\Camtasia 2025\\CamtasiaProducer.exe\"\n& $producer /listpresets\n# Common presets:\n# - \"MP4 - Smart Player (up to 1080p)\"\n# - \"MP4 only (up to 1080p)\"\n# - \"Audio Only (M4A)\"\n# - \"Custom Production Settings\"\n```\n\n### Step 2: Multi-Format Export\n\n```powershell\n$project = \"C:\\Projects\\tutorial.tscproj\"\n$formats = @(\n    @{ Preset = \"MP4 only (up to 1080",
  "cost": {
    "context_tokens": 375
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-cor-53c547/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.