# Batch Streamable Downloader

**Use case:** 

Get MP4 links and video details for a list of public Streamable videos in one run.

## Input

```json
{
  "urls": [
    "https://streamable.com/o1ioj2",
    "ab12cd"
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "streamableId": {
    "label": "Streamable ID",
    "format": "string"
  },
  "canonicalUrl": {
    "label": "Streamable page URL",
    "format": "string"
  },
  "bestMediaUrl": {
    "label": "Best MP4 URL",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration in seconds",
    "format": "number"
  },
  "width": {
    "label": "Width",
    "format": "integer"
  },
  "height": {
    "label": "Height",
    "format": "integer"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "dateAdded": {
    "label": "Upload date",
    "format": "string"
  },
  "plays": {
    "label": "Play count",
    "format": "integer"
  },
  "mediaVariants": {
    "label": "MP4 variants",
    "format": "array"
  }
}
```

## About this Actor

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