smok3
26th April 2011, 09:56
my workflow is as follows:
shot to:
interlaced xdcam, 1440x1080 50i
the output must be:
smooth 25p
the problem: shutter seems to fast, motion is strobing, especially pans
this seems to go well so far (technically speaking):
sony xdcam transfer (rewraps mxf to mov) -> final cut (editing and grading), just making the use of 'native' xdcam timeline -> exporting natively to interlaced xdcam.mov -> avisynth deinterlacing, stabilizing the noise
the avisynth script i used was like:
# editing in final cut pro, using sony xdcam transfer software to rewrap into mov,
# edit natively in xdcam INTERLACED timeline
# plugins like looks3 seems to get correct field order and there is no chroma bleeding (not so in premiere cs5)
# this script is applied to interlaced xdcam mov with the idea to stabilize noise movements and to make it fake progressive
LoadPlugin("t:\utility\avisynth\ffmpegsource\FFMS2.dll")
LoadCPlugin("t:\utility\avisynth\yadifNew\yadif.dll")
a=ffaudiosource("film.avi")
v=ffvideosource("film.avi")
audiodub(v,a)
assumetff()
FFT3DFilter(sigma=2, sharpen=0.1, interlaced=true)
yadif()
resize(1920,1080) # or any other size you need
# ColorYUV(gamma_y=-34, gamma_u=-34, gamma_v=-34) # 220 -34 = 186 ? <- would this be mac to pc monitor gamma correction?
question:
a. is there a cool way to achive slow shutter effect? plugins for fcp? plugins or scripts for avisynth?
b. other comments on the workflow?
shot to:
interlaced xdcam, 1440x1080 50i
the output must be:
smooth 25p
the problem: shutter seems to fast, motion is strobing, especially pans
this seems to go well so far (technically speaking):
sony xdcam transfer (rewraps mxf to mov) -> final cut (editing and grading), just making the use of 'native' xdcam timeline -> exporting natively to interlaced xdcam.mov -> avisynth deinterlacing, stabilizing the noise
the avisynth script i used was like:
# editing in final cut pro, using sony xdcam transfer software to rewrap into mov,
# edit natively in xdcam INTERLACED timeline
# plugins like looks3 seems to get correct field order and there is no chroma bleeding (not so in premiere cs5)
# this script is applied to interlaced xdcam mov with the idea to stabilize noise movements and to make it fake progressive
LoadPlugin("t:\utility\avisynth\ffmpegsource\FFMS2.dll")
LoadCPlugin("t:\utility\avisynth\yadifNew\yadif.dll")
a=ffaudiosource("film.avi")
v=ffvideosource("film.avi")
audiodub(v,a)
assumetff()
FFT3DFilter(sigma=2, sharpen=0.1, interlaced=true)
yadif()
resize(1920,1080) # or any other size you need
# ColorYUV(gamma_y=-34, gamma_u=-34, gamma_v=-34) # 220 -34 = 186 ? <- would this be mac to pc monitor gamma correction?
question:
a. is there a cool way to achive slow shutter effect? plugins for fcp? plugins or scripts for avisynth?
b. other comments on the workflow?