-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
69 lines (51 loc) · 1.67 KB
/
config.example.yaml
File metadata and controls
69 lines (51 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Mind Movie Generator - Configuration File
# Copy this file to config.yaml and customize as needed
# Environment variables from .env take precedence over these values
# Video generation settings
video:
# Video generation provider: "byteplus" or "veo"
provider: "byteplus"
# Video generation model
# BytePlus: seedance-1-5-pro-251215
# Veo: veo-3.1-fast-generate-preview, veo-3.1-generate-preview,
# veo-3.0-fast-generate-001, veo-3.0-generate-001
model: "seedance-1-5-pro-251215"
# Output resolution: 480p, 720p, 1080p, or 4K
resolution: "720p"
# Aspect ratio: 16:9 or 9:16
aspect_ratio: "16:9"
# Generate audio with video (BytePlus Seedance 1.5+ / Veo 3+)
generate_audio: true
# Maximum concurrent video generations (respects rate limits)
max_concurrent: 5
# Maximum retry attempts for failed generations
max_retries: 3
# Mind movie structure settings
movie:
# Duration of each scene in seconds (BytePlus supports 2-12s)
scene_duration: 12
# Target number of scenes (10-15 recommended)
num_scenes: 10
# Title card duration in seconds
title_duration: 5
# Closing card duration in seconds
closing_duration: 5
# Crossfade duration between scenes in seconds
crossfade_duration: 0.5
# Output video frame rate
fps: 24
# Music settings
music:
# Music source: file, mubert, or musicgen
source: "file"
# Path to background music file (if source is "file")
# Leave empty to skip background music
file_path: ""
# Music volume (0.0 to 1.0)
volume: 0.20
# Build settings
build:
# Directory for intermediate files and pipeline state
build_dir: "build"
# Default output file path
output_path: "mind_movie.mp4"