Skip to main content
The Mimir Export tile uploads rendered workflow outputs into the Mimir connection configured for the workflow workspace. Use it at the end of a workflow after a tile that produces a render, such as Clips, Reframe, Captions, or a final processing step.

Settings

Destination

Set mimir_folder_id to the destination Mimir folder UUID or folder path.

File Naming

Leave file_name blank to use the default output names:
  • render.mp4 for a single output
  • render.mp4, render-1.mp4, render-2.mp4, etc. for multiple outputs
Set file_name to override the base filename. For multiple outputs, Mosaic keeps the first filename as provided and adds -1, -2, etc. to later files. Enable link_to_mimir_asset when the exported render should be linked to an original Mimir asset. Mosaic sends the selected original item id as Mimir parentItemIds when creating the exported item. Provide mimir_parent_item_id explicitly, or omit it when the upstream source came from Mimir and Mosaic can infer the original item id from source metadata.

API Info

  • Node ID: 5b2e8a91-8c36-4d3e-93f5-8a36ad4e9e77

Node params

ParamTypeRequiredDefaultNotes
mimir_folder_idstringYes""Mimir destination folder UUID or folder path.
file_namestringNo""Optional filename override. Blank uses render.mp4 naming.
link_to_mimir_assetbooleanNofalseWhen true, send parentItemIds on Mimir item creation.
mimir_parent_item_idstringNo""Original Mimir item id to send as parentItemIds[0].
mimir_parent_item_idsstring[]No[]Advanced API option for multiple parent item ids.

Example

{
  "mimir_folder_id": "8c5d9360-f7a6-4d28-8a63-1c6c5fdc1791",
  "file_name": "render.mp4",
  "link_to_mimir_asset": true,
  "mimir_parent_item_id": "OG_MIMIR_ASSET_ID"
}
When link_to_mimir_asset is true, Mosaic creates the Mimir item with:
{
  "parentItemIds": ["OG_MIMIR_ASSET_ID"]
}