erbridge/vhs-degrade-frame
Forked from andreasjansson/jpg-glitch
Public
90
runs
Run erbridge/vhs-degrade-frame with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| image |
string
|
Input image to apply VHS artifacts
|
|
| vhs_intensity |
number
|
0.5
Max: 1 |
VHS artifact intensity (0.0 to 1.0)
|
| tracking_errors |
boolean
|
True
|
Add horizontal tracking errors
|
| color_bleeding |
boolean
|
True
|
Apply color bleeding/chroma shift
|
| tape_noise |
boolean
|
True
|
Add tape noise and static
|
| scanlines |
boolean
|
True
|
Add CRT scanlines
|
| generation_loss |
integer
|
2
Min: 1 Max: 5 |
Simulate multiple generations of copying (1-5)
|
| seed |
integer
|
Random seed for consistent effects (None for random)
|
{
"type": "object",
"title": "Input",
"required": [
"image"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"x-order": 7,
"nullable": true,
"description": "Random seed for consistent effects (None for random)"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 0,
"description": "Input image to apply VHS artifacts"
},
"scanlines": {
"type": "boolean",
"title": "Scanlines",
"default": true,
"x-order": 5,
"description": "Add CRT scanlines"
},
"tape_noise": {
"type": "boolean",
"title": "Tape Noise",
"default": true,
"x-order": 4,
"description": "Add tape noise and static"
},
"vhs_intensity": {
"type": "number",
"title": "Vhs Intensity",
"default": 0.5,
"maximum": 1,
"minimum": 0,
"x-order": 1,
"description": "VHS artifact intensity (0.0 to 1.0)"
},
"color_bleeding": {
"type": "boolean",
"title": "Color Bleeding",
"default": true,
"x-order": 3,
"description": "Apply color bleeding/chroma shift"
},
"generation_loss": {
"type": "integer",
"title": "Generation Loss",
"default": 2,
"maximum": 5,
"minimum": 1,
"x-order": 6,
"description": "Simulate multiple generations of copying (1-5)"
},
"tracking_errors": {
"type": "boolean",
"title": "Tracking Errors",
"default": true,
"x-order": 2,
"description": "Add horizontal tracking errors"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}