02-27-2003, 02:24 PM
|
Free Member
|
|
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
How long should the encoding take, I´m converting a movie (719 MB) and the estimated time is 25 hours, I have Pentium 3 1000Mhz.
This is the script I´m using,
LoadPlugin("E:\KVCD Converting\Filters\Mpeg2dec.dll")
LoadPlugin("E:\KVCD Converting\Filters\GripFit_Preview.dll")
LoadPlugin("E:\KVCD Converting\Filters\blockbuster.dll")
LoadPlugin("E:\KVCD Converting\Filters\LegalClip.dll")
LoadPlugin("E:\KVCD Converting\Filters\Sampler.dll")
LoadPlugin("E:\KVCD Converting\Filters\DustV5.dll")
LoadPlugin("E:\KVCD Converting\Filters\nomosmooth.dll")
LoadPlugin("E:\KVCD Converting\Filters\fluxsmooth.dll")
LoadPlugin("E:\KVCD Converting\Filters\convolution3d")
avisource("E:\-=[ CACHE ]=-\Reign_of_Fire_(2002).XviD.DMT.ShareReactor.avi")
ConvertToYUY2()
LegalClip()
mergechroma(blur(1.5 )
mergeluma(blur(0.6))
GripCrop(528, 576, overscan=2)
GripSize()
SpaceDust()
FluxSmooth(7,7)
NoMoSmooth(40,1,6,1,3,false)
Convolution3d(preset="movieHQ")
Blockbuster(method="sharpen", detail_min=1, detail_max=99, strength=15)
LegalClip()
#Sampler(length=24)
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
02-28-2003, 11:09 AM
|
Free Member
|
|
Join Date: Dec 2002
Posts: 99
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
It may be your blockbuster setting. Anything usually to do with sharpening kills the speed.
|
02-28-2003, 02:35 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
If you´re using 528 x 576, your resolution is big enough and you can take out the blockbuster ( sharpen ) from your script.
Otherwise your movie will be very, very sharp.
|
03-01-2003, 01:15 AM
|
Free Member
|
|
Join Date: Jun 2002
Posts: 129
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
This script:
Code:
Import ("G:\sample avisynth scripts\LoadPlugins.h")
Mpeg2Source("G:\video_ts\Ronin.d2v")
LegalClip()
Telecide()
Decimate()
Gripcrop(528,480)
Gripsize(resizer="lanczosresize")
mergechroma(blur(1.58))
mergeluma(blur(0.2))
SpaceDust()
FluxSmooth(7,7)
NoMoSmooth(40,1,6,1,3,false)
Convolution3d(preset="movieHQ")
DctFilter(1,1,1,1,1,1,.5,0)
GripBorders()
LetterBox(0, 0, 8, 8)
LegalClip()
Sampler(length=24)
Takes about 55 minutes on my 1.8 Gig P4 with 512 Mb Ram.
I'm thinking something must be wrong!
|
03-01-2003, 01:19 AM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi Smoochie3,
Check your TMPEG settings, and make sure you set your environment NOT to use multi threaded. Just one CPU.
-kwag
|
03-01-2003, 01:50 AM
|
Free Member
|
|
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I removed the blockbuster but it didn´t work, could someone suggest a script for me, I mostly encode .avi´s that are around 700 MB´s, I wan´t to fit them to a 1 700 MB cd!
|
03-01-2003, 01:57 AM
|
Free Member
|
|
Join Date: Jun 2002
Posts: 129
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hey Kwag,
What OTHER settings should i check besides the multithreading? I have it unchecked, it's still taking 55 minutes to complete. Strange.
|
03-01-2003, 02:14 AM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by Smoochie3
Hey Kwag,
What OTHER settings should i check besides the multithreading? I have it unchecked, it's still taking 55 minutes to complete. Strange.
|
 Then maybe it's an interaction with one of the filters and the Athlon processor
Try removing a filter at a time, to see which one is causing the long encode time
-kwag
|
03-01-2003, 02:47 AM
|
Free Member
|
|
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
LoadPlugin("E:\KVCD Converting\Filters\Mpeg2dec.dll")
LoadPlugin("E:\KVCD Converting\Filters\GripFit_Preview.dll")
LoadPlugin("E:\KVCD Converting\Filters\LegalClip.dll")
LoadPlugin("E:\KVCD Converting\Filters\Sampler.dll")
LoadPlugin("E:\KVCD Converting\Filters\convolution3d")
LoadPlugin("E:\KVCD Converting\Filters\DustV5.dll")
LoadPlugin("E:\KVCD Converting\Filters\TemporalCleaner.dll")
avisource("E:\-=[ CACHE ]=-\Reign_of_Fire_(2002).XviD.DMT.ShareReactor.avi")
ConvertToYUY2()
LegalClip()
GripCrop( width=352, height=576, overscan=2 )
GripSize()
SpaceDust()
TemporalCleaner()
Convolution3d(preset="movieHQ")
GripBorders()
LegalClip()
#Sampler(length=24)
This script has an estimated time of 5 hours, I tried it with fluxsmooth but it takes twice as much time with it, suggestions?
|
03-01-2003, 02:56 AM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by CheronAph
This script has an estimated time of 5 hours, I tried it with fluxsmooth but it takes twice as much time with it, suggestions?
|
Remove FluxSmooth, and try NoMoSmooth.
-kwag
|
03-01-2003, 03:03 AM
|
Free Member
|
|
Join Date: Feb 2003
Location: Espoo, Finland
Posts: 494
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
LoadPlugin("E:\KVCD Converting\Filters\Mpeg2dec.dll")
LoadPlugin("E:\KVCD Converting\Filters\GripFit_Preview.dll")
LoadPlugin("E:\KVCD Converting\Filters\LegalClip.dll")
LoadPlugin("E:\KVCD Converting\Filters\Sampler.dll")
LoadPlugin("E:\KVCD Converting\Filters\convolution3d")
LoadPlugin("E:\KVCD Converting\Filters\DustV5.dll")
LoadPlugin("E:\KVCD Converting\Filters\TemporalCleaner.dll")
LoadPlugin("E:\KVCD Converting\Filters\NoMoSmooth.dll")
avisource("E:\-=[ CACHE ]=-\Reign_of_Fire_(2002).XviD.DMT.ShareReactor.avi")
ConvertToYUY2()
LegalClip()
GripCrop( width=352, height=576, overscan=2 )
GripSize()
SpaceDust()
TemporalCleaner()
Convolution3d(preset="movieHQ")
NoMoSmooth(40,1,6,1,3,false)
GripBorders()
LegalClip()
#Sampler(length=24)
5 hours 40 minutes, I have no idea are the settings in the script good?
|
All times are GMT -5. The time now is 05:50 PM — vBulletin © Jelsoft Enterprises Ltd
|