VDM Telecide Help?

This forum is for questions and discussion of all the aspects of handling your footage. If you have questions about capturing/ripping footage, AviSynth, or compression/encoding/converting, look here.

VDM Telecide Help?

Postby Purple Harlequin » Fri Feb 23, 2007 3:38 pm

Okay, so I've finally made it to VirtualDubMod and it turns out that I've got the worst file ever:
When I checked in AVISynth, it was marked as progressive; but when I check the field order in VDM, it turns out to be Bottom Field First.
Is that good? I recall reading on one of the how-to guides that it was a disadvantage. :?

So I use Telecide (Bear in mind that I don't have a clue whether my file is PAL or NTSC or whatever) and whenever I try to check it works in VDM, the same thing keeps coming up:

Telecide: YUY2 or YV12 data only.

So here's my present script:

mpeg2source("C:\Documents and Settings\user\My Documents\My Videos\AMV\Bvd2.d2v")
LanczosResize(640,480)
ConvertToRGB32()
ComplementParity()
Telecide(order=0)
Decimate(cycle=5,mode=3,threshold=1.0)

Jeez this stuff makes my head hurt. Help, please?
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Kariudo » Fri Feb 23, 2007 5:04 pm

unless complementparity() needs rgb data I would suggest ommiting the converttorgb32()

if it does need rgb data, then before you use telecide you should switch the colorspace back to yv12 by adding converttoyv12()

I've never had to deal with footage like that, so I won't say anything else about it.

as for NTSC or PAL, this wikipedia page has a map that shows which countries/regions use which video standard
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Re: VDM Telecide Help?

Postby Willen » Sat Feb 24, 2007 5:13 am

Purple Harlequin wrote:mpeg2source("C:\Documents and Settings\user\My Documents\My Videos\AMV\Bvd2.d2v")
LanczosResize(640,480)
ConvertToRGB32()
ComplementParity()
Telecide(order=0)
Decimate(cycle=5,mode=3,threshold=1.0)


Resizing should almost always be done at the very end of the chain.

If you've read EADFAG, there's a section that deals with using DGIndex to create the d2v files: Getting Your Video - Making DGIndex Project Files. You can check the box that pops up when you press F5 to see what the video properties are. There should be a Video Type field that will tell you if the footage is NTSC or PAL (or FILM). In addition, if you look at the Frame Size, it will say either 720x480 for NTSC or 720x576 if it is PAL.

As for field order, this page should hopefully be of some help: Analysing Your DVD Footage - Checking the Field Order.

Then if you want to edit with progressive footage, read this: Making Your Footage Progressive, and don't forget Dealing with Aspect Ratios. (Remember the DGIndex properties? It should also tell you if the footage is 4:3 or 16:9.)
Having trouble playing back videos? I recommend: Image
User avatar
Willen
Now in Hi-Def!
 
Joined: 10 Jul 2005
Location: SOS-Dan HQ
Status: Melancholy

Postby Purple Harlequin » Sat Mar 10, 2007 1:01 pm

Okay, so now the error has disappeared and there are no more scan lines. (Thanks so much! :D)
But when do I convert the file to AVI?
I just tried and my computer crashed... so I guess there's more to do?

My script now looks like this:

mpeg2source("C:\Documents and Settings\user\My Documents\My Videos\AMV\Bvd2.d2v")
ConvertToYV12()
ComplementParity()
Telecide(order=0, guide=1)
Decimate(cycle=5,mode=2)
LanczosResize(640,480)
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Kariudo » Sat Mar 10, 2007 1:07 pm

when in vdubmod, go to video, compression, and then select the codec of your choice.
then go to file, save as, name your file and press save.

depending on your computer, your avisynth script, and how much video is being saved as avi it can take a while
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Purple Harlequin » Sat Mar 10, 2007 1:09 pm

Kariudo wrote:when in vdubmod, go to video, compression, and then select the codec of your choice.
then go to file, save as, name your file and press save.


What is the difference between the codecs listed?
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Kariudo » Sat Mar 10, 2007 1:35 pm

I don't know for most of them, but if you are looking to edit with this footage I suggest a lossless codec such as lagarith or huffyuv (beware, lossless means no quality loss but large filesize. Lagarith is a little more resource intensive but produces smaller files than huffyuv)

another option is to use an MJPEG codec (which you may or may not have)

whatever you do, do not choose divx or xvid

links:
huffyuv
lagarith
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Purple Harlequin » Sat Mar 10, 2007 1:44 pm

Okay, I'm saving it now. Hopefully I won't hit another brick wall...

Once the AVI is made, can I delete all the VOB, D2V and AC3 files?
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Kariudo » Sat Mar 10, 2007 1:56 pm

I usually keep the vobs and d2vs around until I finish the amv, but if you have an avi file of the same footage then it should be safe to delete those.

AC3 is the dvd audio, which in most cases you can get rid of right away
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Purple Harlequin » Sat Mar 10, 2007 1:58 pm

Okay thanks.

And what is the usual size for an hour-long AVI? Mine's not even half way and it's already 5GB...
O___O
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Kariudo » Sat Mar 10, 2007 2:12 pm

lets see...usually I think a huffyuv of one episode is about 5GB...so an hour should be about 11GB
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Purple Harlequin » Sat Mar 10, 2007 2:33 pm

That's odd... I've used Lagarith and it's 16GB now. And still saving.
@__@
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK

Postby Purple Harlequin » Sun Mar 11, 2007 11:51 am

Sorted!

Thanks to everyone who helped me. I've completed my animé now and I'm so proud of it. (Even though as always with first-time AMVs, there are a few faults)

xxxx
^____^
User avatar
Purple Harlequin
 
Joined: 16 Feb 2007
Location: London, UK


Return to Footage Help

Who is online

Users browsing this forum: No registered users and 1 guest