# Loom Download Transcript No Captions Downloader

**Use case:** 

Download a public Loom video MP4 with its plain-text transcript but without WebVTT captions from a share link. Returns metadata as JSON.

## Input

```json
{
  "urls": [
    "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5"
  ],
  "maxItems": 5,
  "includeTranscript": true,
  "includeCaptions": false
}
```

## Output

```json
{
  "mp4DownloadUrl": {
    "label": "Download",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "totalViews": {
    "label": "Views",
    "format": "number"
  },
  "uniqueViews": {
    "label": "Unique Views",
    "format": "number"
  },
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "privacy": {
    "label": "Privacy",
    "format": "text"
  },
  "downloadEnabled": {
    "label": "Download Enabled",
    "format": "boolean"
  },
  "transcriptionStatus": {
    "label": "Transcription",
    "format": "text"
  },
  "transcript": {
    "label": "Transcript",
    "format": "text"
  },
  "captions": {
    "label": "Captions (VTT)",
    "format": "text"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Collected At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Loom Video Downloader](https://apify.com/parseforge/loom-video-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/loom-video-downloader) to learn more, explore other use cases, and run it yourself.