digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   only use default setings from KDVD templates? (http://www.digitalfaq.com/archives/encode/11618-default-setings-kdvd.html)

vorkosigan 08-19-2004 08:20 AM

only use default setings from KDVD templates?
 
Hi,forum
First sorry for my bad english.
I make KDVD from 1 month,but i olny use default setings from KDVD templates.
Result is great.I work with TMPGEnc Plus 2.9 for encoding video, VirtualDub Mod and BeSweet for audio,and TMPG DVD Autor for autoring.
these templatese are GREAT, 10x a lot.
I convert only avi's to KDVD.Hire in this forum i read about Avisynth scripts.
May this scripts help me to make DVD's smailer or with better quality.
Can someone tell me some good script for conversion from avi to KDVD.

Regards.

Dialhot 08-19-2004 08:34 AM

The same as for AVI->KVCD :
http://www.kvcd.net/forum/viewtopic.php?t=7223

vorkosigan 08-20-2004 07:59 AM

10x

vorkosigan 09-08-2004 06:54 AM

Hi again,
I try to use AviSinth script but i have problem.
I use AviSinth 2.5 and script is:

AviSource("e:\cube.avi",false)
AddBorders(0,0,4,3)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(720, 576, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_ma x=10,variance=0.3,seed=5623)
GripBorders()

10x Dialhot

My movie is 640x352 PAL
When i load my script in TMPG ENC-In the screen is this massage:
"BlindPP need mod 16"
and in status bar i have this options:
"MPEG-2 292x164 24fps CQ 70"
I load KDVD FULL D1 PAL

Where I make mistake.

Boulder 09-08-2004 07:06 AM

You've got a 640x352 source, therefore both width and height are mod-16 (divisible by 16 that means). So why the heck are you adding borders to the video in the beginning of the script? Remove that AddBorders line and it should work.

vorkosigan 09-08-2004 08:17 AM

yes it works 10x
But now i have another problem,when i start converting TMPG look that:
http://free.bol.bg/vorkosigan/
Any ideas?
10x

Boulder 09-08-2004 08:41 AM

Try BicubicResize as the resizer.

Could you open that script in VirtualDub and see what happens?

vorkosigan 09-08-2004 11:52 AM

I frameserve whit VirtualDubMod and all is ok.
But VobSub filter can't load.
10x,i will tray to put subtitles after encoding.
10x again

vorkosigan 09-08-2004 12:24 PM

error again
 
Whit this script:

AviSource("G:\MOVIES\Pitch Black\Pitch Black.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(720, 480, overscan=1, source_anamorphic=false)
GripSize(resizer="BicubicResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_ma x=10,variance=0.3,seed=5623)
GripBorders()
VirtualDub give me that message:
"Avisinth open falure:
BlindPP:Working in YV12 color space"

What is dis?

jorel 09-08-2004 12:32 PM

Quote:

Originally Posted by vorkosigan
...i will tray to put subtitles after encoding.

i'm not expert and i don't encode avis/divx but if you do that you'll need to encode again to put the subs.
it's not a good idea!
can anyone confirm ?

rds_correia 09-08-2004 02:36 PM

@Jorel,
No, he doesn't need to reencode to add subs to a KDVD.
He can use a *.sup file and author the KDVD with IfoEdit.
Just the way VMesquita explains in his KDVD guide with subs.
On the other hand he can use DVDLab Pro and feed it with the video *.m2v file, audio *.ac3 or *.mp2 and also
feed it with a subtitle file *.srt from subrip format.
DVDLab Pro will then render the text subs file into a Pictures file and mux it in the process :D.
DVDAuthorGUI also has the possibility to do the same but is way too simple and lacks some important features
such as good menu support for instance.
Cheers buddy

jorel 09-08-2004 02:58 PM

Quote:

Originally Posted by rds_correia
@Jorel,
No, he doesn't need to reencode to add subs to a KDVD.
He can use a *.sup file and author the KDVD with IfoEdit.
Cheers buddy

hy Correiada :lol:
of course, :oops:
i forgot that cos i don't encode with subs a long time,
i only do cartoons (audio portuguese for the kid) and musicals (for me without subs)
thanks to remember me and remove that doubts! :D

vorkosigan 09-08-2004 03:00 PM

I make this whit IfoEdit and Subremap.
Can anyone help me whit my problem pls.
10x

rds_correia 09-08-2004 05:18 PM

Quote:

Originally Posted by vorkosigan
I make this whit IfoEdit and Subremap.
Can anyone help me whit my problem pls.
10x

Sorry but all I can come up with is put a Converttoyuy2() at the end of your script.
Maybe that can help?
Changing colorspaces is never a good thing to do but maybe it's one way to overcome this problem.
EDIT: Coming to think of it BlindPP only works with Yv12 colorspace, so the tip I gave will never work. Sorry :(
BTW I must advise you, because I have tried srt2sup&subremap: the subs quality is very poor compared to
using DVDAuthorGUI and feeding it an srt file.
That is if you can't afford DVDLab Pro, that is ;-)

Boulder 09-09-2004 12:53 AM

If BlindPP needs YV12 data, then put ConverttoYV12() right before it. Simple as that :wink:

vorkosigan 09-09-2004 05:04 AM

10x Boulder
I will tray this.
Regards

vorkosigan 09-09-2004 06:10 AM

VobSub
 
Just now i found how to load VobSub filter for permanent subtitles when
frameserving with VirtuaDubMod.
First i load my script in VirtualDubMod.
Next - start frameserver - and name it movie_server.avi
Original name is movie.avi.
Next rename subtitles - movie_server.sub or srt
Load movie_server.avi in TMPG Enc as Video source
Load "movie.avi" for Audio source
and START.
Nice a?

Dialhot 09-09-2004 06:34 AM

I still don't understand why you are using a frameserver method...

Using a script is far easier / faster / more efficient. All people here gave you all needed information for that.

vorkosigan 09-09-2004 07:51 AM

Because when I load this script in TMPG Enc:
AviSource("e:\cube.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(720, 576, overscan=1, source_anamorphic=false)
GripSize(resizer="BicubicResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_ma x=10,variance=0.3,seed=5623)
GripBorders()

TMPG show me this:
www.vorkosigan2.hit.bg
and when start encodin picture is same.
Whit frameserving no problems.
what's wrong?

Boulder 09-09-2004 07:56 AM

Open the script in VirtualDub. Does it look the same there?

You could also try the resolution 704x576.

Dialhot 09-09-2004 08:05 AM

Your server is so slow that I can't see you picture so please just describe what you see !
(edit: I think I know what happens to you : the picture is completly distorted, isn't it ?
Use Directshowsource insteed of Avisource, it should work).

vorkosigan 09-09-2004 08:30 AM

Quote:

Originally Posted by Boulder
Open the script in VirtualDub. Does it look the same there?

You could also try the resolution 704x576.

in VIrtualDub picture is perfekt
with this resolution "704x576" result is same.
www.free.bol.bg/vorkosigan
Hire are the picture whit problem

Dialhot 09-09-2004 08:32 AM

Post them as jpg, not gif please !
Bulgaria is hard to acces from France (I have a lot of "time out" answer) !

vorkosigan 09-11-2004 01:26 PM

Hi,
Everiting is OK now,
But I have a question,
When I make movie(DVD) whit script mv2 file size is 995 Mb
and only whit template mv2 file size is 731 Mb
The movie is "Twisted" and quality of two mv2 files is same.
10x for help

Dialhot 09-13-2004 04:22 AM

The video bitrates (min and max) are surely different in your two tests. Check that.


All times are GMT -5. The time now is 10:37 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.