bytedance/seedance-1.0-pro-fast-i2v
Seedance 1.0 Pro Fast image-to-video model (ByteDance). Animate an input image into a professional-grade video with exceptional speed and efficiency.
Pricing
Adjustments:
Example Pricing:
Input Parameters
The text prompt used to guide the animation
Input image URL to animate
Video resolution - 480p for faster generation, 720p for balance, 1080p for higher quality
Default: 1080p
Options: 480p, 720p, 1080p
Duration of the video in seconds
Default: 5
Options: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
The aspect ratio of the generated video
Default: 16:9
Options: 21:9, 16:9, 4:3, 1:1, 3:4, 9:16
Whether to fix the camera position
Random seed to control video generation. Use -1 for random.
If set to true, the safety checker will be enabled
Default: 1
Directives
Raw JSON
{
"identifier": "bytedance/seedance-1.0-pro-fast-i2v",
"fal_endpoint": "fal-ai/bytedance/seedance/v1/pro/fast/image-to-video",
"type": "video",
"category": "image-to-video",
"description": "Seedance 1.0 Pro Fast image-to-video model (ByteDance). Animate an input image into a professional-grade video with exceptional speed and efficiency.",
"pricing": {
"version": 1,
"base": {
"unit": "second",
"credits": 5
},
"adjustments": [
{
"type": "multiplier_map",
"key": "resolution",
"map": {
"1080p": 1,
"720p": 0.44,
"480p": 0.2
},
"default": 1
}
],
"display": {
"min_credits": 3,
"max_credits": 72
}
},
"directives": {
"advancedKeys": [
"aspect_ratio",
"camera_fixed",
"seed",
"enable_safety_checker"
],
"hiddenKeys": [],
"imageKeys": [
"image"
],
"preRunLogs": [
"Seedance I2V: Animating image into video"
]
},
"fal": {
"input_transforms": [
{
"type": "rename",
"from": "image",
"to": "image_url"
}
]
},
"inputSchema": {
"type": "object",
"title": "Input",
"required": [
"prompt",
"image"
],
"properties": {
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "The text prompt used to guide the animation"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 1,
"description": "Input image URL to animate"
},
"resolution": {
"enum": [
"480p",
"720p",
"1080p"
],
"type": "string",
"title": "Resolution",
"default": "1080p",
"x-order": 2,
"description": "Video resolution - 480p for faster generation, 720p for balance, 1080p for higher quality"
},
"duration": {
"enum": [
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"type": "string",
"title": "Duration",
"default": "5",
"x-order": 3,
"description": "Duration of the video in seconds"
},
"aspect_ratio": {
"enum": [
"21:9",
"16:9",
"4:3",
"1:1",
"3:4",
"9:16"
],
"type": "string",
"title": "Aspect Ratio",
"default": "16:9",
"x-order": 4,
"description": "The aspect ratio of the generated video"
},
"camera_fixed": {
"type": "boolean",
"title": "Camera Fixed",
"x-order": 5,
"description": "Whether to fix the camera position"
},
"seed": {
"type": "integer",
"title": "Seed",
"x-order": 6,
"description": "Random seed to control video generation. Use -1 for random."
},
"enable_safety_checker": {
"type": "boolean",
"title": "Enable Safety Checker",
"default": true,
"x-order": 7,
"description": "If set to true, the safety checker will be enabled"
}
}
},
"outputSchema": {
"type": "object",
"title": "Output",
"properties": {
"video": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"content_type": {
"type": "string"
}
}
},
"seed": {
"type": "integer"
}
}
}
}