> For the complete documentation index, see [llms.txt](https://agpt.co/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agpt.co/docs/integrations/block-integrations/download.md).

# Video Download

This block downloads videos from URLs, supporting a wide range of video platforms and direct links.

## Video Download

### What it is

Download video from URL (YouTube, Vimeo, news sites, direct links)

### How it works

The block uses yt-dlp, a powerful video downloading library that supports over 1000 websites. It accepts a URL, quality preference, and output format, then downloads the video while merging the best available video and audio streams for the selected quality. Quality options: **best** (highest available), **1080p/720p/480p** (maximum resolution at that height), **audio\_only** (extracts just the audio track).

### Inputs

| Input          | Description                                                      | Type                                                   | Required |
| -------------- | ---------------------------------------------------------------- | ------------------------------------------------------ | -------- |
| url            | URL of the video to download (YouTube, Vimeo, direct link, etc.) | str                                                    | Yes      |
| quality        | Video quality preference                                         | "best" \| "1080p" \| "720p" \| "480p" \| "audio\_only" | No       |
| output\_format | Output video format                                              | "mp4" \| "webm" \| "mkv"                               | No       |

### Outputs

| Output      | Description                           | Type       |
| ----------- | ------------------------------------- | ---------- |
| error       | Error message if the operation failed | str        |
| video\_file | Downloaded video (path or data URI)   | str (file) |
| duration    | Video duration in seconds             | float      |
| title       | Video title from source               | str        |
| source\_url | Original source URL                   | str        |

### Possible use case

* Downloading source videos for editing or remixing
* Archiving video content for offline processing
* Extracting audio from videos for transcription or podcast creation
* Gathering video content for automated content pipelines

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://agpt.co/docs/integrations/block-integrations/download.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
