feat: expand novel IP and production workflows

This commit is contained in:
www
2026-09-18 08:14:05 +02:00
parent b2ae4600b4
commit d9c81a3ac0
235 changed files with 117971 additions and 2721 deletions
@@ -0,0 +1,26 @@
UPDATE `project_pipeline_configs`
SET
`scene_composer_version` = 'scene_composer_plan_v2',
`scene_composer_config_json` = JSON_SET(
COALESCE(`scene_composer_config_json`, JSON_OBJECT()),
'$.plan_version', 'scene_composer_plan_v2',
'$.transition_contract_version', 'transition_contract_v2',
'$.picture_edit_policy', 'hard_picture_by_default_explicit_blends_only',
'$.audio_edit_policy', 'independent_j_cut_l_cut_and_audio_bridge',
'$.planned_features', JSON_ARRAY(
'shot_ordering',
'emotion_curve',
'transition_contract_v2',
'boundary_frame_policy',
'screen_vector_continuity',
'hard_picture_cut',
'explicit_visual_blends_only',
'independent_j_cut_l_cut',
'episode_builder',
'bgm_alignment',
'original_music_bible',
'sfx_cue_plan',
'ducking_plan'
),
'$.note', 'Scene Composer Plan V2 keeps picture hard by default, permits visual overlap only for explicit blend contracts, and schedules J-cuts, L-cuts and audio bridges independently.'
);