Venom_IL
4th November 2006, 16:40
Hi
As I am not very knowledgable in Avisynth, I would appreciate a little explanation on this phenomenon. I am encoding the same AVI (~1.2 GB, XVID(QPEL), Mp3-VBR) , one time with TheFilmMachine (TFM) and one time with DVD2SVCD+D2SRoBa.
TFM's avs file is
# 16:9 encoding
Import("C:\Programs\The FilmMachine\AviSynth\ResampleAudio.avs")
LoadPlugin("C:\Programs\The FilmMachine\VSFilter.dll")
AviSource("F:\0TO ENCODE\test.avi", false)
ConvertToYUY2()
FadeIn(50)
Lanczos4Resize(720,412,0.0,0.6)
AddBorders(0,82,0,82)
TextSub("F:\0Encoding\TFM\TFM_Subtitle_File1.ssa")
ResampleAudio(44100)
and D2sRoba's avs file is
LoadPlugin("C:\Programs\DVD2SVCD\AVISYN~1.5PL\Mpeg2dec\MPEG2D~1.DLL")
LoadPlugin("C:\Programs\DVD2SVCD\AVISYN~1.5PL\AVISYN~2.DLL")
AVISource("F:\0TOENC~1\test.AVI",audio=false)
ConvertToYUY2()
Import("C:\Programs\DVD2SVCD\Tylo\RoBaConditional.avs")
LanczosResize(0+0+720,310)
AddBorders(0,133,0,133)
AvisynthSubtitler("F:\0ENCOD~1\D2S\subs\","permsubs.txt")
Import("F:\0Encoding\D2S\ResampleAudio.avs")
ResampleAudio(44100)
TFM gives me 100% cpu usage, about 30% of which is tfm.exe and the other CCE. the speed is about 2.5 RT
D2SRoBa gives me 70% CPU usage, almost all of it is CCE, and the speed is about 3.5 RT
The main difference i see is Lanzcos vs. Lanzcos4 and avisynthsubtitler vs. textsub
would they account for this difference ?
Thanks in advance
As I am not very knowledgable in Avisynth, I would appreciate a little explanation on this phenomenon. I am encoding the same AVI (~1.2 GB, XVID(QPEL), Mp3-VBR) , one time with TheFilmMachine (TFM) and one time with DVD2SVCD+D2SRoBa.
TFM's avs file is
# 16:9 encoding
Import("C:\Programs\The FilmMachine\AviSynth\ResampleAudio.avs")
LoadPlugin("C:\Programs\The FilmMachine\VSFilter.dll")
AviSource("F:\0TO ENCODE\test.avi", false)
ConvertToYUY2()
FadeIn(50)
Lanczos4Resize(720,412,0.0,0.6)
AddBorders(0,82,0,82)
TextSub("F:\0Encoding\TFM\TFM_Subtitle_File1.ssa")
ResampleAudio(44100)
and D2sRoba's avs file is
LoadPlugin("C:\Programs\DVD2SVCD\AVISYN~1.5PL\Mpeg2dec\MPEG2D~1.DLL")
LoadPlugin("C:\Programs\DVD2SVCD\AVISYN~1.5PL\AVISYN~2.DLL")
AVISource("F:\0TOENC~1\test.AVI",audio=false)
ConvertToYUY2()
Import("C:\Programs\DVD2SVCD\Tylo\RoBaConditional.avs")
LanczosResize(0+0+720,310)
AddBorders(0,133,0,133)
AvisynthSubtitler("F:\0ENCOD~1\D2S\subs\","permsubs.txt")
Import("F:\0Encoding\D2S\ResampleAudio.avs")
ResampleAudio(44100)
TFM gives me 100% cpu usage, about 30% of which is tfm.exe and the other CCE. the speed is about 2.5 RT
D2SRoBa gives me 70% CPU usage, almost all of it is CCE, and the speed is about 3.5 RT
The main difference i see is Lanzcos vs. Lanzcos4 and avisynthsubtitler vs. textsub
would they account for this difference ?
Thanks in advance