01-13-2005, 07:02 PM
|
Free Member
|
|
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hello again i am encoding a 196 minute DVD pal to a 2 cd VCD using this script and it is taking about 16 hours to do this process can somone tell me why and what things i don't need in my script?
Code:
LoadPlugin("D:\KVCD\avisynth plugins\MPEG2Dec3.dll")
LoadPlugin("D:\KVCD\avisynth plugins\GripFit_YV12.dll")
LoadPlugin("D:\KVCD\avisynth plugins\STMedianFilter.dll")
LoadPlugin("D:\KVCD\avisynth plugins\asharp.dll")
LoadPlugin("D:\KVCD\avisynth plugins\unfilter.dll")
LoadPlugin("D:\KVCD\avisynth plugins\undot.dll")
Mpeg2Source("D:\DVDr\movie\VIDEO_TS\movie.d2v")
undot()
asharp(1, 4)
BicubicResize(352,432,0,0.6,8,0,704,576)
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")
AddBorders(0,72,0,72)
#Trim(0,188727).FadeOut(150)
function fmin( int f1, int f2) { return ( f1<f2 ) ? f1 : f2}
Pentium 4
1.61 Ghz
512 MB ram
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
01-13-2005, 07:16 PM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Unfortunally you need everything.
|
01-13-2005, 07:17 PM
|
Free Member
|
|
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by Dialhot
Unfortunally you need everything.
|
haha
hmmm is it normal to be taking that long for that long of a movie to encode? i mean 16 hours thats a lot
|
01-13-2005, 07:24 PM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Which answer do you expect ?
We can't know what is running on your PC, how fast is your disc, how big is its fragmentation level, what you are doing with it while it is encoding.
So what can we tell you ? Yes it is normal. If tmpgenc needs 16h, then it needs 16h.
|
01-13-2005, 07:27 PM
|
Free Member
|
|
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by Dialhot
Yes it is normal
|
all i wanted to hear bro
|
01-13-2005, 07:55 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
And for a movie of 196 minutes, encoding at 1.61 Ghz, it sounds about right
-kwag
|
01-13-2005, 08:15 PM
|
Free Member
|
|
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
yeah and btw kwag i tried the 352 * 576 and it was a cq level of 68 so thats good but quality not that good but i understand why cause its a 196 minute movie trying to put on 2 cd's thx anyways
|
01-14-2005, 05:08 AM
|
Free Member
|
|
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Change the last line of the MA part from
(3/nf) , 1, 1) ")
to
(3/nf) , 1, 2) ")
and see how long it would take then. Mode 2 is supposed to be faster (and better) than mode 1. I think Kwag changed it because it caused problems with some cartoon?
|
01-14-2005, 06:45 AM
|
Free Member
|
|
Join Date: Mar 2003
Location: (^_^)
Posts: 504
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
No, he didn't change it. But gives it also better quality?
|
01-14-2005, 07:11 AM
|
Free Member
|
|
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by Encoder Master
No, he didn't change it. But gives it also better quality?
|
Yes he did.
Quote:
Changed scenechange detect from 0 to 1 and "Mode" from 2 to 1 on TemporalSoften parameters. The old parameters were causing some problems on Anime/Cartoon types of movies.
|
I don't know what the problems were since I've never seen anyone complain about TemporalSoften and anime/cartoons. Mode 2 should produce better quality.
|
01-15-2005, 03:15 AM
|
Free Member
|
|
Join Date: Mar 2003
Location: (^_^)
Posts: 504
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")
|
But here I can't see.
|
01-15-2005, 05:00 AM
|
Free Member
|
|
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Kwag switched from mode 2 to mode 1. The last number in the MA part
TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1) ")
|
01-15-2005, 06:33 AM
|
Free Member
|
|
Join Date: Mar 2003
Location: (^_^)
Posts: 504
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Change the last line of the MA part from
(3/nf) , 1, 1) ")
to
(3/nf) , 1, 2) ")
|
But you say he should change to 2.
|
01-15-2005, 06:37 AM
|
Free Member
|
|
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Because mode 2 is faster and produces better quality than mode 1. I don't know what the problem with mode 2 was with MA, but I've never seen any complaints about it. Besides, the problem has been reported only with cartoons/anime, and I'm quite sure it doesn't even apply to every single cartoon/anime source.
|
All times are GMT -5. The time now is 02:13 AM — vBulletin © Jelsoft Enterprises Ltd
|