Skip to main content
Glama

Conform Video + Audio from URL

conform_from_url

Mux a separate video file and audio file (both public HTTPS URLs) into one fresh-encoded output — the video/audio 'conform' step: combine two sources, and reconcile a frame-rate or duration mismatch between them so they line up. Default options.method 'mux' just combines both streams as-is (use this when the rates already match). For a real mismatch, set options.method to 'resample_video' (cheap frame duplicate/drop to options.target_framerate — real-time duration unchanged), 'interpolate_video' (motion-compensated retiming to options.target_framerate — smoother but much slower, best for a large rate change), or 'speed_conform' (true pulldown-style retime: every source frame is kept but played at options.target_framerate, so total duration changes by source_fps/target_fps and the audio is time-stretched by the same ratio to hold lip-sync — the classic 24→25fps NTSC/PAL-speed conform). options.duration_policy controls what happens if the two sources are still different lengths after any retiming: 'shortest' (default — trim to the shorter one) or 'match_video' (silence-pad audio so output length exactly matches the video). Returns a job_id immediately. Poll get_job_status until 'complete', then get_download_url. RELIABILITY & FALLBACK: Botverse returns structured errors with a message. A bare 'HTTP 500' or 'tool call failed' with no message body is the MCP connector / sandbox layer between your client and Botverse — NOT a Botverse outage (the service is up if get_wallet_balance succeeds). If MCP calls keep failing, do NOT write your own ffmpeg / transcription / document-conversion code as a workaround — that wastes tokens and reinvents what Botverse does. Instead, tell the user to run the equivalent Botverse CLI from their own (non-sandboxed) machine, e.g. npx botverse transcribe <file> --to docx (also transcode and convert), then retry the MCP call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
optionsNo
audio_urlYesPublic HTTPS URL of the audio source (replaces/supplies the video's audio track). Share links auto-resolve.
video_urlYesPublic HTTPS URL of the video source (its frames + resolution drive the output). Share links from Dropbox, Google Drive, OneDrive, SharePoint, Box auto-resolve.
output_formatYesmp4 (H.264/AAC), webm (VP9/Opus), or mov_prores (ProRes 422).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesUnique identifier for this job. Pass to get_job_status and get_download_url.
statusYesInitial job state — always queued or processing immediately after submission.
estimated_secondsNoRough estimated processing time in seconds. Actual time may vary.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses the asynchronous job lifecycle: 'Returns a job_id immediately. Poll get_job_status until complete, then get_download_url.' It also explains side effects of each conform method, such as duration changes or audio time-stretching for speed_conform, and details error semantics and fallback behavior. This goes well beyond the sparse annotations and does not contradict them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but front-loaded with the core purpose and method breakdown. Each section—method options, duration_policy, job flow, reliability—earns its place. The reliability/fallback paragraph is somewhat tangential but still useful for an agent to avoid wasted work. It is structured enough to remain navigable despite its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with nested options, asynchronous behavior, and multiple conform methods, the description covers everything needed to call it correctly: inputs, method selection criteria, output handling, and failure recovery. The output schema exists, so return values need not be spelled out, and the description does not leave critical gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 75%, and the description adds meaningful semantics on top: what each method does behaviorally, why target_framerate is required, and the exact effect of duration_policy. It does not elaborate on width, height, bitrate, or output_format, but the schema already documents those clearly. The added value is concentrated on the most important parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description leads with a specific action and resource: 'Mux a separate video file and audio file (both public HTTPS URLs) into one fresh-encoded output.' It clearly identifies the conform step (combining and reconciling two sources) and differentiates from sibling tools like transcode/convert by requiring two distinct input URLs. The title and description together leave no doubt about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit selection guidance among the methods: 'use this when the rates already match' for mux, and concrete conditions for resample_video, interpolate_video, and speed_conform. It also explains duration_policy choices. It does not explicitly name sibling tools as alternatives (e.g., conform_media vs conform_from_url), but the two-URL requirement strongly implies the right use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Each operation is split into clear source-specific variants (URL, uploaded file, inline content), and the descriptions go to great lengths to distinguish them. The only mild ambiguities are generic-sounding names like transcode_video versus transcode_from_url, and the similar get_job_status/get_workflow_status pair, but there is no true functional overlap.

Naming Consistency4/5

Most tools follow an imperative verb_noun pattern and use recurring suffixes like _from_url, _content, and _file, which creates a readable family structure. The pattern breaks slightly with uploaded-media variants named conform_media, transcode_video, and transcribe_media instead of a consistent _file or _uploaded suffix, and transcode_content is referenced in a description but missing from the actual tool list.

Tool Count4/5

17 tools is slightly above the ideal 3-15 range, but the server covers several related subdomains: document conversion, media transcode/transcribe/conform, job/workflow lifecycle, and wallet/billing. Given the need for URL, uploaded, and inline variants across multiple media types, the overall count is reasonable.

Completeness3/5

Core workflows are well covered: uploading, job submission, polling, and retrieving outputs all exist, and conversion has content/file/URL routes. However, get_upload_url explicitly tells agents to use transcode_content for inline media, but that tool does not exist, and there is no inline transcribe counterpart to convert_content, leaving a notable gap for sandboxed inline media jobs.

Resources