-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinterpolate-frames.json
More file actions
51 lines (51 loc) · 1.56 KB
/
Copy pathinterpolate-frames.json
File metadata and controls
51 lines (51 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "InterpolateFrames",
"description": "Generates a short Mochi video, then smooths it by interpolating extra frames between the generated ones.",
"variables": {
"prompt": "A cat walking across a sunlit room",
"multiplier": 2
},
"steps": [
{
"name": "generate_video",
"pipeline": {
"configuration": {
"offload": "sequential",
"component_type": "MochiPipeline",
"vae": {
"enable_tiling": true,
"enable_slicing": true
}
},
"from_pretrained_arguments": {
"model_name": "genmo/mochi-1-preview",
"variant": "bf16",
"torch_dtype": "torch.bfloat16"
},
"arguments": {
"prompt": "variable:prompt",
"num_frames": 85
}
},
"result": {
"content_type": "video/mp4",
"save": false,
"fps": 30
}
},
{
"name": "interpolate",
"task": {
"command": "interpolate_frames",
"arguments": {
"video": "previous_result:generate_video",
"multiplier": "variable:multiplier"
}
},
"result": {
"content_type": "video/mp4",
"fps": 60
}
}
]
}