Comme j'ai voulu envoyé ce post hier soir, depuis, j'ai un copain qui m'a filé un script AVS:
# AVisynth script
# PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll" )
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FluxSmooth.dll" )
# SOURCE
film=directshowsource("D:\video\juin_DV.avi" )
# Color sampling - because of the canopus bug
film=film.FixBrokenChromaUpsampling()
# if you want to keep only from seconds number 10 to 12 and 16 to 18 - I'm doing PAL reccording
A=film.trim(250,300)
B=film.trim(400,450)
# Z is always the final movie you want to encode, so that you don't have to change the real encoding part.
Z = A+B
# Some crop (based on the aspect ratio thread
Z=Z.crop(8,0,704,576)
# because cheap camcorder are interlaced ;-(
Z=Z.FieldDeinterlace(blend=false)
# a soft noise remover
Z=Z.Temporalsoften(2,3,3,mode=2,scenechange=6)
Z=Z.mergechroma(Z.blur(1.3))
Z=Z.FluxSmooth(5,7)
# standard resize
Z=Z.Bicubicresize(640,480) #307200 pixels
return Z
# end of avisynth script
Je crois que la seule partir importante est celle que j'ai mis en gras
film=directshowsource("chemin du fichier avi" )
Pour le reste, je ne comprends pas tout.
si qqn peut m'expliquer le reste du script