Frequently asked
Which platforms does multi-platform export support?
Ten platform names, mapping to three distinct aspect ratios: TikTok, YouTube Shorts, Reels, Instagram Stories → 9:16. Instagram Feed, LinkedIn → 1:1. YouTube, Twitter, X → 16:9. Unknown platform names raise an explicit error so a typo can't silently produce the wrong aspect.
How does the fill method affect the output?
Aspect conversion has three choices: blur_fill (default — a blurred copy of the source fills the letterbox area, preserves the original framing), letterbox (plain black bars in the unused area), and crop (zoom-and-trim to fit the new aspect, lossy but no bars). blur_fill is the modern social-media default and what most viral Shorts use; letterbox is film-festival aesthetic; crop is for when you absolutely cannot show bars (Instagram Feed product shots).
Does the same video get re-encoded for every platform?
No. ViralMint dedupes shared aspects before rendering — if you export to TikTok + YouTube Shorts + Reels + Stories, all four want 9:16, so only one render happens. The resulting ZIP still includes one file per platform (with platform-tagged names) but they all point at the same underlying video. The dedupe also extends across separate export calls: a 16:9 conversion from a prior export is reused on the next.
Can I export an arbitrary aspect ratio (not just the 10 platforms)?
Yes — the underlying export-bundle endpoint accepts a target_aspects list directly. The Multi-Platform Export tool is a UI on top of that, mapping platform names to aspects. If you need 4:5 or some custom ratio, drop down to the raw Export action on a generated video and pass the aspect directly.
How long does the export take?
Aspect conversion is FFmpeg's blur_fill (or letterbox / crop) filter. Wall-clock depends on source length and CPU: a 60-second source produces a 9:16 export in 5–15 seconds, three aspects in 20–60 seconds total. Cached aspects from prior exports are instant — just copied into the ZIP.
Can ViralMint also post directly to TikTok / YouTube / Instagram?
No — auto-upload was built and then removed. ViralMint produces the files; you upload manually to each platform. This is deliberate: platform upload-API rules and TOS shift constantly, and a tool that auto-uploads is one rate-limit change away from breaking on every user simultaneously. Posting manually with our drafted titles, descriptions, tags, and TikTok captions takes about 30 seconds per platform.
Where does this fit in the ViralMint workflow?
Pair it with the Viral Clip Extractor (extract 10 clips from a long video) or Smart Video / AI Video (generate one short from a topic) — those produce the source, this ships it. Through the MCP tool surface, repurpose_for_platforms is a single tool call that takes a video_id and a platform list; the agent can chain it directly after a generation step.
Is the multi-platform mapping configurable?
Not in the UI yet — the platform→aspect map is currently hard-coded (TikTok → 9:16 etc.). If you want a different mapping for a non-standard niche, drop to the export-bundle endpoint and pass aspect ratios directly. We may surface a custom-mapping editor in the desktop UI later.