I just have a few questions.
Basically what I would like to do is to have an "in" watchfolder and an "out" folder.
Every file I move to the "in" folder must be transcoded in order to achieve a final XDCAM 4:2:2 1080i (1920x1080) 25fps interlaced with 8 PCM unpaired tracks.
Googling around, I found FFA and I tried to setup it but nothing happens when I click "start" (I'm doing something wrong for sure).
Few questions:
1) does it work in Windows Server 2003 (Basically, Windows XP)? If not, it's not a big deal since we have newer server running Windows Server 2008 R2 as well.
2) Since I need output files to be PAL interlaced (despite the input source), is there an internal way to do this or should I do it via avisynth?
eg: (Auto-deinterlace - 'cause sources may be NTSC -, resize and then interlace)
Code: Select all
tdeint(mode=2, order=-1, field=-1, mthreshL=6, mthreshC=6, map=0, type=2, debug=false, mtnmode=1, sharp=true, cthresh=6, blockx=16, blocky=16, chroma=false, MI=64, tryWeave=true, link=1, denoise=true, slow=2, opt=4)
nnedi3_resize16(target_width=1920, target_height=1080, mixed=true, thr=1.0, elast=1.5, nns=4, qual=2, etype=0, pscrn=4, threads=0, kernel_d="lanczos", kernel_u="Spline64", f_d=1.0, f_u=2.0, sharp=300)
ConvertFPS(50)
assumeTFF()
separatefields()
selectevery(4,0,3)
weave()
Thank you in advance and sorry if these are silly questions.