// --- OUTPUT --- output( "C:\[Chokhmah]\out\stuka_demo.avi", 1280, 720, bicubic, "C:\[Chokhmah]\sound\solo.wav" ); // --- INPUTS --- // 8mm overlay input input( 8mm, "C:\[Chokhmah]\Real_8mm_Film.mov" ) { color_balance( 0.24, 0.06, -0.30 ); brightness( 0.08 ); contrast( 0.80 ); saturation( 0.90 ); } // Eric TROUSSET - guitar solo front input( et_solo_front, "C:\[Chokhmah]\et_solo_front.MOV", center, 10008, 8000 ) { color_balance( 0.32, 0.22, -0.12 ); brightness( 0.00 ); contrast( 0.40 ); saturation( 0.80 ); noise_reduction( 6 ); } // Eric TROUSSET - guitar solo head input( et_solo_head, "C:\[Chokhmah]\et_solo_ghead.MOV", top, 11364, 8000 ) { color_balance( 0.32, 0.22, -0.12 ); brightness( 0.01 ); contrast( 0.40 ); saturation( 0.80 ); noise_reduction( 6 ); } // Eric TROUSSET - guitar solo bottom right side input( et_solo_bottom_right, "C:\[Chokhmah]\et_solo_bottomright.MOV", bottom_left, 10511, 8000 ) { color_balance( 0.32, 0.22, -0.12 ); brightness( 0.01 ); contrast( 0.40 ); saturation( 0.75 ); noise_reduction( 6 ); } // Arnaud SINTES - guitar front part 1/2 input( as_guit_front_1, "C:\[Chokhmah]\as_guit_front_1.MOV", center, 122612 ) { color_balance( 0.40, 0.22, -0.12 ); brightness( 0.00 ); contrast( 0.36 ); saturation( 0.88 ); noise_reduction( 5 ); } // Arnaud SINTES - guitar back input( as_guit_back, "C:\[Chokhmah]\as_guit_gback.MOV", center, 118330 ) { color_balance( 0.44, 0.30, -0.06 ); brightness( 0.02 ); contrast( 0.44 ); saturation( 0.86 ); noise_reduction( 5 ); } // Arnaud SINTES - guitar head input( as_guit_head, "C:\[Chokhmah]\as_guit_ghead.MOV", bottom, 127849 ) { color_balance( 0.30, 0.22, -0.08 ); brightness( 0.02 ); contrast( 0.25 ); saturation( 0.84 ); noise_reduction( 6 ); } // --- GROUPS --- // all Eric TROUSSET group( all_et ) { et_solo_front, et_solo_head, et_solo_bottom_right } // all Arnaud SINTES group( all_as ) { as_guit_front_1, as_guit_head, as_guit_back } // Eric TROUSSET (guitar neck + bottom side) group( et_head_br ) { et_solo_head, et_solo_bottom_right } // everyone group( all ) { all_as, all_et } // --- OVERLAY --- overlay( 8mm, 100 ) { capture( 17, 26, 692, 448 ); } // --- MARKERS --- marker( 1, 2left_1right ) { tempo( 75 ); signature( 5, 4 ); separator( 4 ); display( et_solo_front ); display( et_head_br, each_beat ); display( all_as, each_beat ); effect( fade_in ); } marker( 2, 1left_2right ) { display( et_solo_front ); display( et_head_br, each_beat ); display( all_as, each_beat ); } marker( 3, 1top_3bottom ) { display( all_as, each_beat ); display( et_solo_front ); display( et_solo_head ); display( et_solo_bottom_right ); } marker( 4, 1fullscreen ) { display( et_solo_front ); } marker( 5, 1fullscreen ) { display( et_solo_front ); speed( et_solo_front, 0.25 ); } marker( 6, 1top_1bottom ) { display( all_as, each_measure ); display( all_et, each_measure ); } marker( 7, 1fullscreen ) { display( all, each_beat ); effect( fade_out ); } marker( 8 ) {}