# inference.pruna.p-video.aud2vid.v1

Source: https://docs.prodia.com/job-types/inference-pruna-p-video-aud2vid-v1/

## Schema

```json
{
	"type": "object",
	"required": [
		"type",
		"config"
	],
	"additionalProperties": false,
	"properties": {
		"type": {
			"type": "string",
			"enum": [
				"inference.pruna.p-video.aud2vid.v1"
			]
		},
		"config": {
			"type": "object",
			"required": [
				"prompt",
				"audio"
			],
			"additionalProperties": false,
			"properties": {
				"audio": {
					"type": "string",
					"format": "filename",
					"description": "Input audio for audio-conditioned video generation. Supports flac, mp3, wav."
				},
				"prompt": {
					"type": "string",
					"minLength": 1,
					"maxLength": 4096,
					"description": "Text prompt for video generation."
				},
				"resolution": {
					"type": "string",
					"default": "720p",
					"enum": [
						"720p",
						"1080p"
					],
					"description": "Video resolution."
				},
				"fps": {
					"type": "integer",
					"default": 24,
					"enum": [
						24,
						48
					],
					"description": "Frames per second."
				},
				"aspect_ratio": {
					"type": "string",
					"default": "16:9",
					"enum": [
						"16:9",
						"9:16",
						"4:3",
						"3:4",
						"3:2",
						"2:3",
						"1:1"
					],
					"description": "Aspect ratio of the video."
				},
				"seed": {
					"type": "integer",
					"description": "Random seed for reproducible generation."
				},
				"draft": {
					"type": "boolean",
					"default": false,
					"description": "Draft mode generates a lower-quality preview."
				},
				"prompt_upsampling": {
					"type": "boolean",
					"default": true,
					"description": "Use prompt upsampling to enhance the prompt."
				}
			}
		}
	}
}
```
