|
You’re Not My Father is going to be installed at the MCA Denver, show opening this Tuesday. I got one more submission to the project since I finished it, so the version at the museum will be 20 seconds longer with the new footage. Here’s the AVISynth script that I used to edit the raw footage into the exact same cuts as the original clip:
#DJ: 271, 1267, 3130, 3744, (4210)
#close: 6744, 7565, 8704
#walk: 2905, 4750
#sit: 10702
sound=wavsource("original_audio.wav")
src1=DirectShowSource("raw_xvid_audio.avi",29.97)
#src1=DirectShowSource("dvd.mpg",29.97)
# DJ! (18 frames)
clip1start=3744
clip1=trim(src1,clip1start,clip1start+18)
# You can't tell me what to do (82 frames)
clip2start=8025
clip2=trim(src1,clip2start,clip2start+85)
# DJ walks away (61 frames)
clip3start=2905
clip3=trim(src1,clip3start,clip3start+61)
# Joey sits (216 frames)
clip4start=10702
clip4=trim(src1,clip4start,clip4start+216)
finalclip=clip1+clip2+clip3+clip4
#finalclip=tweak(finalclip,0,2.9,0,2)
#Tweak(clip clip [, float hue] [, float sat] [, float bright] [, float cont] [, bool coring] [, int startHue] [, int endHue] [, int maxSat] [, int minSat] [, int interp])
#finalclip=audiodub(finalclip,sound)
finalclip=trim(finalclip,0,340)
return(finalclip)
|