03-16-2004, 04:07 AM
|
Free Member
|
|
Join Date: Mar 2004
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Is it worth using all the filters and such, if you are only going to be making one movie.
I`m making 720x576 and only using the .d2v file and notch matrix.
The conversion is very quick.
I have 4,7G disk space per Dvd so why would I bother going the other way?
Just asking for some opinions
Thanks
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
03-16-2004, 04:16 AM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I think that a script is always necessary but for a DVD to DVD copy I don't use a big script. A little spatial filter, a little temporal one. That's enougth.
I also crop the picture to 704*576 and add an overscan of 2 because there is really no need to encore a picture where the TV set won't display the area !
Something like :
Code:
Crop(8,0,704,576)
Fluxsmooth()
TemporalCleaner(5,10)
Letterbox(16,16,16,16)
This way the CQ raises from 5 points at least (or the Q factor under CCE gain 2 or 3 points).
Now, if you already encode at a CQ of 90, there is no need to do that as you won't gain anything visually in doing it at 95 .
|
03-16-2004, 04:19 AM
|
Free Member
|
|
Join Date: Mar 2004
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Thanks
|
03-16-2004, 05:35 AM
|
Invalid Email / Banned / Spammer
|
|
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Phil and zaanvander
this is an telepatic forum, questions and answers came like waves!
i was thinking to ask seamless question:
i did a sample without any resize loading only the source and was faster.
if my target will be kdvd from dvd source,than i don't need resize...
what i can remove in this lines but still getting overscan 1 or 2:
script from MovieStacker with overscan 1:
BicubicResize(704,352,0,0.6,0,0,720,480)
AddBorders(8,64,8,64)
Phil, you wrote too:
"This way the CQ raises from 5 points at least (or the Q factor under CCE gain 2 or 3 points)."
my doubt:
Q factor in CCE is inverse, don't?
Q20 will give better reult than using Q40, right?
thanks in advance!
|
03-16-2004, 05:48 AM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by jorel
if my target will be kdvd from dvd source,than i don't need resize...what i can remove in this lines but still getting overscan 1 or 2:
|
If you don't want to resize, that mean that your overscan will be done by overlapping. And that is the letterbox command that do that.
Letterbox(8,8,8, for overscan 1
Letterbox(16,16,16,16) for overscan 2.
Quote:
script from MovieStacker with overscan 1:
BicubicResize(704,352,0,0.6,0,0,720,480)
AddBorders(8,64,8,64)
|
You take a frame that is 720*480 (as told by the 2 last parameters) you resize it to 704*352 (2 first parameters) then add 64+64 pixels of borders ??? You can imagine easily how the A/R will be screwed up by this !
The correct way is simply :
Code:
Crop(704,480,8,0)
Letterbox(8,8,8,8) # overscan 1
or even, if you want to have a 720*480 target (that I never do, 704 has the same quality, no need to go to 720...)
Code:
Letterbox(8,8,8,8) # overscan 1
That's so simple !
Quote:
my doubt:
Q factor in CCE is inverse, don't?
Q20 will give better reult than using Q40, right?
|
You are right. I didn't remember at the moment the opposite of the verb "to raise" so I just tell "Q factor will gain some points"
|
03-16-2004, 06:29 AM
|
Invalid Email / Banned / Spammer
|
|
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
great!
"The correct way is simply :
Code:
Crop(704,480,8,0)
Letterbox(8,8,8, # overscan 1"
yes, better Q(cce) and/or CQ(tmpgenc) and fast encode!
"... "to raise".... "Q factor will gain some points" "
right, very clear!
big thanks Phil (faster and precise as always) !
|
All times are GMT -5. The time now is 03:07 AM — vBulletin © Jelsoft Enterprises Ltd
|