+ Reply to Thread
Results 1 to 14 of 14
-
Capture devices/drivers decide whether capture top field first, or bottom field first.
-
-
I capture interlaced PAL VHS in 720x576 with lossless compression. The reason I'm concerned with BFF is that I'm having some problems with resizing in Carbon Coder while getting mpeg. Though, as Dazzle is designed to work with DV it's possible that BFF is it's default format.
-
You can convert BFF to TFF by shifting the frame up by one scan line. Since you're capturing lossless you must be planning on compression go something else for final storage so the extra step shouldn't be a problem.
If you know AviSynth you can also use SeparateFields().Trim(1,0).Weave(). If the source is progressive frames that will restore them. -
I applied another script:
DirectShowSource("Video.avi")
AssumeTFF() #AssumeBFF()
SeparateFields()
and found that info() produced wrong information about BFF -
That's the lesson I learned today.
Apparently, this fact is not documented here
http://avisynth.org/mediawiki/InfoLast edited by Zabar12; 11th Jan 2012 at 15:44.
-
Yes, the mediawiki documenation should be more clear
If you want a basic guide for dermining field order, progressive, interlaced, pulldown...
http://neuron2.net/faq.html#analysis -
Thanks, I employed a similar method described in this FAQ to sort out my problem
-
Not quite. AVIsynth's AVISource always sets AVIsynth's internal field order flag to BFF. Some other source filters (e.g. MPEG2Source) read the field order correctly from the file, and so sometimes set it to TFF.
There should be no problem working with BFF footage. You can put BFF video onto DVDs. It's just a question of flagging it properly (set in the MPEG2 encoder).
The issue comes with mixing TFF and BFF footage. You can do this (DVDs accept it) if the MPEG stream is flagged correctly, but it's not a great idea - it's a pain to edit, and DVD players may display a visible glitch at the transition.
Cheers,
David.
Similar Threads
-
Dazzle DVC100 Interlacing Problems
By Imatk in forum Capturing and VCRReplies: 1Last Post: 25th Jul 2011, 18:25 -
Unable to convert NTSC VHS to DVD - Dazzle DVC100
By tkexer in forum Capturing and VCRReplies: 4Last Post: 20th Jun 2011, 09:29 -
TFF / BFF What's the real story?
By ggrussell01 in forum Video ConversionReplies: 18Last Post: 5th Feb 2011, 03:52 -
problems capturing with dazzle DVC100 and s-video no color
By rekotc in forum Capturing and VCRReplies: 14Last Post: 23rd Dec 2010, 04:56 -
No Sound With Dazzle DVC100 using Virtual Dub
By kpoman in forum Capturing and VCRReplies: 3Last Post: 3rd Nov 2009, 08:35