nicolascoutureau/ac-new
Run nicolascoutureau/ac-new 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 or URL
|
|
| target_aspect |
None
|
9:16
|
Output aspect ratio
|
| min_scene_duration |
number
|
0.8
Min: 0.1 Max: 10 |
Merge scene cuts shorter than this duration (seconds)
|
| speaker_score_threshold |
number
|
0
Min: -1 Max: 1 |
TalkNet active speaker threshold
|
| use_yolo_fallback |
boolean
|
True
|
Use YOLO person detection when TalkNet is unavailable/empty
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "Input video file or URL"
},
"target_aspect": {
"enum": [
"9:16"
],
"type": "string",
"title": "target_aspect",
"description": "Output aspect ratio",
"default": "9:16",
"x-order": 1
},
"use_yolo_fallback": {
"type": "boolean",
"title": "Use Yolo Fallback",
"default": true,
"x-order": 4,
"description": "Use YOLO person detection when TalkNet is unavailable/empty"
},
"min_scene_duration": {
"type": "number",
"title": "Min Scene Duration",
"default": 0.8,
"maximum": 10,
"minimum": 0.1,
"x-order": 2,
"description": "Merge scene cuts shorter than this duration (seconds)"
},
"speaker_score_threshold": {
"type": "number",
"title": "Speaker Score Threshold",
"default": 0,
"maximum": 1,
"minimum": -1,
"x-order": 3,
"description": "TalkNet active speaker threshold"
}
}
}
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"
}