---
title: Bria Video Increase Resolution | Runware Docs
url: https://runware.ai/docs/models/bria-video-increase-resolution
description: Bria video upscaling for sharper high resolution output
---
# Bria Video Increase Resolution

Bria Video Increase Resolution upscales visual assets by 2x or 4x while preserving detail and transparency. Ideal for product footage and design workflows that need clean high resolution results without manual rework or artifacts.

- **ID**: `bria:50@1`
- **Status**: live
- **Creator**: Bria
- **Release Date**: September 11, 2025
- **Capabilities**: Video to Video, Upscale

## Pricing

Each operation costs $0.14/s.

- **-**: `$0.14 / sec`

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/bria-video-increase-resolution#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `upscale`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/bria-video-increase-resolution#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/bria-video-increase-resolution#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Video output type.

**Allowed values**: `URL`

### [outputFormat](https://runware.ai/docs/models/bria-video-increase-resolution#request-outputformat)

- **Type**: `string`
- **Default**: `MP4`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`MP4\`: Widely supported video container (H.264), recommended for general use.
- \`WEBM\`: Optimized for web delivery.
- \`MOV\`: QuickTime format, common in professional workflows (Apple ecosystem).

**Allowed values**: `MP4` `WEBM` `MOV`

### [outputQuality](https://runware.ai/docs/models/bria-video-increase-resolution#request-outputquality)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/bria-video-increase-resolution#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/bria-video-increase-resolution#request-deliverymethod)

- **Type**: `string`
- **Default**: `async`

Determines how the API delivers task results.

**Allowed values**:

- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse. Required for long-running tasks like video generation.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/bria-video-increase-resolution#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [ttl](https://runware.ai/docs/models/bria-video-increase-resolution#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/bria-video-increase-resolution#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

**Inputs**

Input resources for the task (images, audio, etc). These must be nested inside the \`inputs\` object.

### [video](https://runware.ai/docs/models/bria-video-increase-resolution#request-inputs-video)

- **Path**: `inputs.video`
- **Type**: `string`
- **Required**: true

Video input (UUID or URL).

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/bria-video-increase-resolution#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `bria:50@1`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [upscaleFactor](https://runware.ai/docs/models/bria-video-increase-resolution#request-upscalefactor)

- **Type**: `integer`
- **Default**: `2`

Factor by which to upscale the generated image. A value of 2 doubles width and height.

**Allowed values**: `2` `4`

## Response Parameters

### [taskType](https://runware.ai/docs/models/bria-video-increase-resolution#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `upscale`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/bria-video-increase-resolution#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [videoUUID](https://runware.ai/docs/models/bria-video-increase-resolution#response-videouuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output video.

### [videoURL](https://runware.ai/docs/models/bria-video-increase-resolution#response-videourl)

- **Type**: `string`
- **Format**: `URI`

URL of the output video.

### [videoBase64Data](https://runware.ai/docs/models/bria-video-increase-resolution#response-videobase64data)

- **Type**: `string`

Base64-encoded video data.

### [videoDataURI](https://runware.ai/docs/models/bria-video-increase-resolution#response-videodatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output video.

### [cost](https://runware.ai/docs/models/bria-video-increase-resolution#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Neon Roller Rink Crowd (Upscale)

[Watch video](https://assets.runware.ai/examples/bria-video-increase-resolution/50a1484e-ad2d-436d-a088-049e7e2114d0.mp4)

**Request**:

```json
{
  "taskType": "upscale",
  "taskUUID": "cc592f0c-aa43-4390-948b-28704ef351ae",
  "model": "bria:50@1",
  "upscaleFactor": 4,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/2b44f3c8-08cd-451c-b768-49545d3ab390.mp4"
  }
}
```

**Response**:

```json
{
  "taskType": "upscale",
  "taskUUID": "cc592f0c-aa43-4390-948b-28704ef351ae",
  "videoUUID": "42379f35-c708-4f79-a591-159d52a96d6f",
  "videoURL": "https://vm.runware.ai/video/os/a17d13/ws/5/vi/42379f35-c708-4f79-a591-159d52a96d6f.mp4",
  "cost": 0.8458,
  "mediaURL": "https://vm.runware.ai/video/os/a17d13/ws/5/vi/42379f35-c708-4f79-a591-159d52a96d6f.mp4",
  "mediaUUID": "42379f35-c708-4f79-a591-159d52a96d6f"
}
```

---

### Glitchy Retro Electronics Showroom (Upscale)

[Watch video](https://assets.runware.ai/examples/bria-video-increase-resolution/3c883242-c1ed-4890-96c2-c76587ab7ed4.mp4)

**Request**:

```json
{
  "taskType": "upscale",
  "taskUUID": "c0f494df-29ee-4853-9635-dcd975c5f3c1",
  "model": "bria:50@1",
  "upscaleFactor": 4,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/45634c0c-5c81-4aff-9fb6-5ad6ac1b0c6a.mp4"
  }
}
```

**Response**:

```json
{
  "taskType": "upscale",
  "taskUUID": "c0f494df-29ee-4853-9635-dcd975c5f3c1",
  "videoUUID": "ece9e07d-e58a-4e7b-b878-e7bbbe3dae4e",
  "videoURL": "https://vm.runware.ai/video/os/a16d07/ws/5/vi/ece9e07d-e58a-4e7b-b878-e7bbbe3dae4e.mp4",
  "cost": 0.8458,
  "mediaURL": "https://vm.runware.ai/video/os/a16d07/ws/5/vi/ece9e07d-e58a-4e7b-b878-e7bbbe3dae4e.mp4",
  "mediaUUID": "ece9e07d-e58a-4e7b-b878-e7bbbe3dae4e"
}
```

---

### Glitchy Aquarium Tunnel Footage (Upscale)

[Watch video](https://assets.runware.ai/examples/bria-video-increase-resolution/bd04ab5e-36a2-47d4-b18e-2cd68e946802.mp4)

**Request**:

```json
{
  "taskType": "upscale",
  "taskUUID": "e1aa11bb-c788-4f6b-8795-6ce1f4103dba",
  "model": "bria:50@1",
  "upscaleFactor": 4,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/c5191a45-a052-481f-bf2a-b257017d634b.mp4"
  }
}
```

**Response**:

```json
{
  "taskType": "upscale",
  "taskUUID": "e1aa11bb-c788-4f6b-8795-6ce1f4103dba",
  "videoUUID": "d636d85f-63cf-4abe-acb4-ddcfab3fb366",
  "videoURL": "https://vm.runware.ai/video/os/a08d21/ws/5/vi/d636d85f-63cf-4abe-acb4-ddcfab3fb366.mp4",
  "cost": 0.8458,
  "mediaURL": "https://vm.runware.ai/video/os/a08d21/ws/5/vi/d636d85f-63cf-4abe-acb4-ddcfab3fb366.mp4",
  "mediaUUID": "d636d85f-63cf-4abe-acb4-ddcfab3fb366"
}
```

---

### VHS Skatepark Demo Footage (Upscale)

[Watch video](https://assets.runware.ai/examples/bria-video-increase-resolution/72e61df4-b6b0-4344-b124-f5f7d7476692.mp4)

**Request**:

```json
{
  "taskType": "upscale",
  "taskUUID": "76917a45-5651-4ae5-bdd1-316cab8e20a9",
  "model": "bria:50@1",
  "upscaleFactor": 4,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/972c904b-5835-4746-90c3-42cee3f58833.mp4"
  }
}
```

**Response**:

```json
{
  "taskType": "upscale",
  "taskUUID": "76917a45-5651-4ae5-bdd1-316cab8e20a9",
  "videoUUID": "dab5e3fc-4c34-4bc4-87c3-f8567a03d5fa",
  "videoURL": "https://vm.runware.ai/video/os/a08d21/ws/5/vi/dab5e3fc-4c34-4bc4-87c3-f8567a03d5fa.mp4",
  "cost": 0.8458,
  "mediaURL": "https://vm.runware.ai/video/os/a08d21/ws/5/vi/dab5e3fc-4c34-4bc4-87c3-f8567a03d5fa.mp4",
  "mediaUUID": "dab5e3fc-4c34-4bc4-87c3-f8567a03d5fa"
}
```