# PixVerse VibeMV

> PixVerse VibeMV generates music videos from audio, with optional character references and lyric subtitles. It supports visual style presets, custom style references, five aspect ratios, and output at 720p or 1080p.


## Overview

- **Endpoint**: `https://fal.run/pixverse/music-video/vibemv`
- **Model ID**: `pixverse/music-video/vibemv`
- **Category**: audio-to-video
- **Kind**: inference
**Description**: PixVerse VibeMV converts an MP3 or WAV track between 10 seconds and 6 minutes into a music video. Optional character and musical-genre references guide the visuals, while supplied lyrics can appear as subtitles.

Visual controls include 15 style presets, a Custom mode with a style reference image, five aspect ratios, and 720p or 1080p output.

**Tags**: audio-to-video, music-video, pixverse, vibemv



## Pricing

For 720p, your request will cost $**0.06** per second; for 1080p, $**0.09** per second. Audio is billed in whole seconds, rounded up, with a 10-second minimum and a 6-minute maximum.

For more details, see [fal.ai pricing](https://fal.ai/pricing).

## API Information

This model can be used via our HTTP API or more conveniently via our client libraries.
See the input and output schema below, as well as the usage examples.


### Input Schema

The API accepts the following input parameters:


- **`audio_url`** (`string`, _required_):
  URL of an MP3 or WAV file between 10 seconds and 6 minutes.
  - Examples: "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav"

- **`image_url`** (`string`, _optional_):
  Optional character reference image URL.

- **`style_image_url`** (`string`, _optional_):
  Optional style reference image URL. Only used with the Custom style.

- **`music_style`** (`Enum`, _optional_):
  Optional musical genre used to guide the visuals.
  - Options: `"Pop"`, `"Rock"`, `"Hip Hop"`, `"R&B"`, `"Jazz"`, `"Reggae"`, `"Country"`, `"Folk"`, `"Electronic"`, `"Classical"`, `"Soul"`, `"Funk"`, `"Metal"`, `"Ambient"`, `"Others"`

- **`style`** (`StyleEnum`, _optional_):
  Visual style for the music video. Default value: `"Cinematic"`
  - Default: `"Cinematic"`
  - Options: `"Custom"`, `"Cinematic"`, `"Lo-fi"`, `"Dreamscape"`, `"Woolen Felt"`, `"Candy"`, `"Golden Age"`, `"Voxel"`, `"Retro Game"`, `"Claymation"`, `"Woodland Tale"`, `"Impressionism"`, `"Decadence"`, `"Futuristic"`, `"Chromatic Clash"`, `"Holiday"`

- **`aspect_ratio`** (`AspectRatioEnum`, _optional_):
  Aspect ratio of the generated video. Default value: `"16:9"`
  - Default: `"16:9"`
  - Options: `"16:9"`, `"9:16"`, `"1:1"`, `"4:3"`, `"3:4"`

- **`resolution`** (`ResolutionEnum`, _optional_):
  Resolution of the generated video. Default value: `"720p"`
  - Default: `"720p"`
  - Options: `"720p"`, `"1080p"`

- **`lyrics`** (`string`, _optional_):
  Optional lyrics to display as subtitles.



**Required Parameters Example**:

```json
{
  "audio_url": "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav"
}
```

**Full Example**:

```json
{
  "audio_url": "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav",
  "style": "Cinematic",
  "aspect_ratio": "16:9",
  "resolution": "720p"
}
```


### Output Schema

The API returns the following output format:

- **`video`** (`File`, _required_):
  The generated video
  - Examples: {"content_type":"video/mp4","url":"https://fal.media/files/zebra/11UahivZ3XZ1tRlcEcgPq_output.mp4","file_size":2995630,"file_name":"output.mp4"}



**Example Response**:

```json
{
  "video": {
    "content_type": "video/mp4",
    "url": "https://fal.media/files/zebra/11UahivZ3XZ1tRlcEcgPq_output.mp4",
    "file_size": 2995630,
    "file_name": "output.mp4"
  }
}
```


## Usage Examples

### cURL

```bash
curl --request POST \
  --url https://fal.run/pixverse/music-video/vibemv \
  --header "Authorization: Key $FAL_KEY" \
  --header "Content-Type: application/json" \
  --data '{
     "audio_url": "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav"
   }'
```

### Python

Ensure you have the Python client installed:

```bash
pip install fal-client
```

Then use the API client to make requests:

```python
import fal_client

def on_queue_update(update):
    if isinstance(update, fal_client.InProgress):
        for log in update.logs:
           print(log["message"])

result = fal_client.subscribe(
    "pixverse/music-video/vibemv",
    arguments={
        "audio_url": "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav"
    },
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)
```

### JavaScript

Ensure you have the JavaScript client installed:

```bash
npm install --save @fal-ai/client
```

Then use the API client to make requests:

```javascript
import { fal } from "@fal-ai/client";

const result = await fal.subscribe("pixverse/music-video/vibemv", {
  input: {
    audio_url: "https://storage.googleapis.com/falserverless/model_tests/diffrythm/rock_en.wav"
  },
  logs: true,
  onQueueUpdate: (update) => {
    if (update.status === "IN_PROGRESS") {
      update.logs.map((log) => log.message).forEach(console.log);
    }
  },
});
console.log(result.data);
console.log(result.requestId);
```


## Additional Resources

### Documentation

- [Model Playground](https://fal.ai/models/pixverse/music-video/vibemv)
- [API Documentation](https://fal.ai/models/pixverse/music-video/vibemv/api)
- [OpenAPI Schema](https://fal.ai/api/openapi/queue/openapi.json?endpoint_id=pixverse/music-video/vibemv)

### fal.ai Platform

- [Platform Documentation](https://fal.ai/docs/documentation)
- [Python Client](https://fal.ai/docs/api-reference/client-libraries/python)
- [JavaScript Client](https://fal.ai/docs/api-reference/client-libraries/javascript)

### Other agent-readable surfaces

This file covers one model. To find anything else:

- [Platform overview](https://fal.ai/llms.txt): Entry points and representative endpoint IDs
- [Documentation index](https://fal.ai/docs/llms.txt): Every documentation page
- [Full documentation text](https://fal.ai/docs/llms-full.txt): The whole documentation inlined
- Any other model: `https://fal.ai/models/<endpoint-id>/llms.txt`
