VCDhelp.com.... just.. sad

This forum is for actual topics of discussion that do not fit the above categories.
Locked
User avatar
RadicalEd0
Joined: Mon Jun 24, 2002 2:58 pm
Org Profile

VCDhelp.com.... just.. sad

Post by RadicalEd0 » Sat Feb 22, 2003 2:06 pm

I was checking good ol vcdhelp today (which I do very seldom due to the amount of ridiculously useless and/or bad guides and the terribly stupid and repetetive forum questions) and came upon this

http://www.dvdrhelp.com/forum/userguides/144959.php

which is just sad.. and, I just wanted to let you guys know how much I think VCDHELP SUCKS
and that dumbass adam guy writes stuff there.. stole my menu guide ideas.. bitches

VCDhelp is good for the dvd player reviews and if you have NO clue what you're doing (mostly because its full of other people in the same predicament :? ) but other than that its full of shit and is to be avoided at all costs

User avatar
Mroni
Joined: Tue Aug 14, 2001 5:08 pm
Location: Heading for the 90s living in the 80s sitting in a back room waiting for the big boom
Org Profile

Post by Mroni » Sat Feb 22, 2003 2:32 pm

Well mister tab maybe you could tell me how to make a fansub go into vcd format so I can watch it on a tv without it cutting off the top and bottom so you cant read the subtitles. There is a recommended resolution that is susposed to go for tv and that does not work.

Mr Oni
Purity is wackable!
"Don't trust me I'm over 40!"

User avatar
RadicalEd0
Joined: Mon Jun 24, 2002 2:58 pm
Org Profile

Post by RadicalEd0 » Sat Feb 22, 2003 2:52 pm

just add extra borders if the subs dont fit onto your screen. Resize to something smaller than 352x240 (vcd res) and then add borders up to 352x240. I dunno, try, resizing to like 320x224 and then addborders 16,8,16,8 or something

User avatar
AbsoluteDestiny
Joined: Wed Aug 15, 2001 1:56 pm
Location: Oxford, UK
Contact:
Org Profile

Post by AbsoluteDestiny » Sat Feb 22, 2003 3:39 pm

That "guide" hurts my brain.

good god......

User avatar
AbsoluteDestiny
Joined: Wed Aug 15, 2001 1:56 pm
Location: Oxford, UK
Contact:
Org Profile

Post by AbsoluteDestiny » Sat Feb 22, 2003 3:47 pm

oh yeah - and in answer to Mroni, here's a really neat avisynth script for you which will help with your vcd encodes immensely.

TVs naturally crop the edges of images but unfortunately there is no "standard" for how much one particular set will crop.

So, what you can do is use this script in avisynth as a video source to make a vcd that will work out how many pixels are cropped from the edge of a vcd (or a dvd if you change the res settings in the scrip).



# clip resolution, choose any to match your ouput encode.

x=352
y=240

# the building blocks

hbar=MessageClip("",x-96,4,false,0,0,$ffffff)
vbar=hbar.bilinearresize(4,y)

# colouring

hr=hbar.rgbadjust(1,0,0,0)
hy=hbar.rgbadjust(1,1,0,0)
hb=hbar.rgbadjust(0,0,1,0)
hg=hbar.rgbadjust(0,1,0,0)

vr=vbar.rgbadjust(1,0,0,0)
vy=vbar.rgbadjust(1,1,0,0)
vb=vbar.rgbadjust(0,0,1,0)
vg=vbar.rgbadjust(0,1,0,0)

# putting them together and add some text

hall=stackvertical(hr,hy,hb,hg)
top=stackvertical(hall.Subtitle("I"),hall.Subtitle("II"),hall.Subtitle("III"))
mid=MessageClip("I: 1-16 II: 17-32 III: 33-48",x-96,y-96)
lft=stackhorizontal(vr,vy,vb,vg,vr,vy,vb,vg,vr,vy,vb,vg).subtitle("I II III",6,y/2)
rgt=stackhorizontal(vg,vb,vy,vr,vg,vb,vy,vr,vg,vb,vy,vr).subtitle("III II I",2,y/2)

stackhorizontal(lft,stackvertical(top,mid,top.flipvertical()),rgt)

#End of script



Each colour bar is 4 pixels and each group of red, yellow, blue, green is
16 pixels. You should change x= and y= to the size you encode at - the script provided is for a standard NTSC vcd.

Once you've found out how many pixels are missing each side you can then use these values to tweak your divx -> vcd or dvd creation using this script which you create using the same process.

Make a note of the pixels lost at the top bottom left and right and put the values into this script which will add the necessary borders to your fansub...

Code: Select all

#
#
#Script start
#
#Enter the overscan values here, default is 16

leftlost=16
rightlost=16
toplost=16
bottomlost=16

#Desired output size, default is NTSC vcd

x=352
y=240

#Your input clip

AVISource("C:/input.avi")

#The resizing and border adding

BiCubicResize((x-leftlost)-rightlost,(y-toplost)-bottomlost)

AddBorders(leftlost,toplost,rightlost,bottomlost)

#End of script

That will avoid any cropping of subtitles on your tv.

Locked

Return to “General Off Topic”