pdbowling
8th November 2005, 19:55
Hi all.
I've got an avisynth script that does everything I need except the fact that Premiere Pro won't read it.
I've got Premiere using HuffYuv codec and wondered if I can tell avisynth to use this codec when encoding. I have Tons of drive space so I will be OK with the massive output. All my other files are huffyuv so I thought keeping the trend would be smart.
The script I have is pasted below. Does anyone know a function/command/available plugin/ that I can use in this script?
Thanks everyone.
# Created with Gordian Knot
#
# http://gknot.doom9.org
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
# SOURCE
mpeg2source("F:\Editing\pMillion2\VTS_01_1.d2v")
# DEINTERLACING (1)
FieldDeinterlace()
# CROPPING
crop(4,54,710,366)
# RESIZING
LanczosResize(640,368)
# DENOISING: choose one combination (or none)
Undot()
# BORDERS
AddBorders(0,60,0,60)
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
SelectRangeEvery(280,14)
I've got an avisynth script that does everything I need except the fact that Premiere Pro won't read it.
I've got Premiere using HuffYuv codec and wondered if I can tell avisynth to use this codec when encoding. I have Tons of drive space so I will be OK with the massive output. All my other files are huffyuv so I thought keeping the trend would be smart.
The script I have is pasted below. Does anyone know a function/command/available plugin/ that I can use in this script?
Thanks everyone.
# Created with Gordian Knot
#
# http://gknot.doom9.org
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
# SOURCE
mpeg2source("F:\Editing\pMillion2\VTS_01_1.d2v")
# DEINTERLACING (1)
FieldDeinterlace()
# CROPPING
crop(4,54,710,366)
# RESIZING
LanczosResize(640,368)
# DENOISING: choose one combination (or none)
Undot()
# BORDERS
AddBorders(0,60,0,60)
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
SelectRangeEvery(280,14)