zeke/change-video-speed
Slow down or speed up your video file.
Public
5
runs
Run zeke/change-video-speed 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 |
|---|---|---|---|
| video |
string
|
Input video file to change speed
|
|
| speed |
number
|
1
Min: 0.1 Max: 10 |
Speed multiplier for the video (0.1 = 10x slower, 10 = 10x faster)
|
| include_audio |
boolean
|
False
|
Whether to adjust audio speed along with video
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"speed": {
"type": "number",
"title": "Speed",
"default": 1,
"maximum": 10,
"minimum": 0.1,
"x-order": 1,
"description": "Speed multiplier for the video (0.1 = 10x slower, 10 = 10x faster)"
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "Input video file to change speed"
},
"include_audio": {
"type": "boolean",
"title": "Include Audio",
"default": false,
"x-order": 2,
"description": "Whether to adjust audio speed along with video"
}
}
}
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"
}
Example API response
View prediction
'https://replicate.delivery/xezq/L5IRzkbWh2opP9vTEiNlZvev1ISaqqfoak4duIu3XnFTbrhVA/speed_adjusted_video.mp4'