gumlet-video-asset-upload
Basic upload
Title defaults to the filename when --title is not provided.
gumlet video asset upload --file ./video.mp4 --workspace-id <id>
Upload with metadata
gumlet video asset upload \
--file ./video.mp4 \
--workspace-id <id> \
--title "Product Demo" \
--description "Demo video for Q2 launch" \
--format ABR \
--tag demo,product
Upload and add directly to a playlist
gumlet video asset upload \
--file ./video.mp4 \
--workspace-id <id> \
--playlist-id <playlist_id>
Flags
| Flag | Required | Description |
|---|---|---|
--file |
✅ | Path to the local video file |
--workspace-id |
✅ | Workspace (collection) ID |
--format |
❌ | ABR (HLS + DASH) or MP4. Default: ABR |
--title |
❌ | Asset title. Defaults to filename |
--description |
❌ | Asset description |
--playlist-id |
❌ | Add asset to this playlist after upload |
--tag |
❌ | Comma-separated tags |
After upload
Check processing status with:
gumlet video asset get --asset-id <returned_asset_id>
More from gumlet/cli
gumlet-image-purge
Purge the Gumlet CDN cache for an image source subdomain using the Gumlet CLI. Use this skill when you need to invalidate cached images after updating source files — either purge the entire cache for a subdomain or target specific image URLs/paths. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
2gumlet-video-asset
Manage Gumlet video assets using the Gumlet CLI. Use this skill to list assets in a workspace with optional filters, get full details of a single asset including playback and thumbnail URLs, or delete an asset permanently. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-image-source
Manage Gumlet image sources using the Gumlet CLI. Use this skill to list all image sources, get details of a specific source, create a new image source connected to a storage backend (Amazon S3, GCS, web proxy, DigitalOcean Spaces, Wasabi, Azure, Cloudflare, Backblaze, etc.), update an existing source's configuration, or delete a source. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-video-playlist
Manage Gumlet video playlists using the Gumlet CLI. Use this skill to list playlists in a workspace, create or update a playlist, add or remove assets from a playlist, view assets inside a playlist, or delete a playlist. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-video-workspace
Manage Gumlet video workspaces using the Gumlet CLI. Use this skill to list all workspaces, get details of a specific workspace, create a new workspace, rename an existing workspace, or delete a workspace. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1