VideoHelp Forum




+ Reply to Thread
Results 1 to 14 of 14
  1. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    I capture from VHS in iuVCR with huffyuv 2.2.1
    Can anyone explain why I get all captures in BFF (as reported by info() in avisynth)?
    Is it hardcoded in Dazzle?
    Quote Quote  
  2. Capture devices/drivers decide whether capture top field first, or bottom field first.
    Quote Quote  
  3. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    Does it mean there is no way to make it capture TFF?
    Quote Quote  
  4. Originally Posted by Zabar12 View Post
    Does it mean there is no way to make it capture TFF?
    There is nothing you can do (DV is always BFF) except switch the field order later. But that will require a re-encode.

    Is your problem progressive PAL frames appearing interlaced because they are broadcast TFF and you're capturing BFF?
    Quote Quote  
  5. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    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.
    Quote Quote  
  6. 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.
    Quote Quote  
  7. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    I applied another script:
    DirectShowSource("Video.avi")
    AssumeTFF() #AssumeBFF()
    SeparateFields()

    and found that info() produced wrong information about BFF
    Quote Quote  
  8. So the frames are really TFF? Or are they progressive?
    Quote Quote  
  9. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    Info() reported BFF, but manual verification confirmed TFF
    Quote Quote  
  10. Originally Posted by Zabar12 View Post
    Info() reported BFF, but manual verification confirmed TFF

    Avisynth's Info() always reports BFF by default . Info() doesn't tell you anything about actual field order of the clip, you can only determine that manually
    Quote Quote  
  11. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    Originally Posted by poisondeathray View Post
    Info() doesn't tell you anything about actual field order of the clip, you can only determine that manually
    That's the lesson I learned today.
    Apparently, this fact is not documented here
    http://avisynth.org/mediawiki/Info
    Last edited by Zabar12; 11th Jan 2012 at 15:44.
    Quote Quote  
  12. 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
    Quote Quote  
  13. Member
    Join Date
    Dec 2011
    Location
    Russia
    Search Comp PM
    Thanks, I employed a similar method described in this FAQ to sort out my problem
    Quote Quote  
  14. Member 2Bdecided's Avatar
    Join Date
    Nov 2007
    Location
    United Kingdom
    Search Comp PM
    Originally Posted by poisondeathray View Post
    Avisynth's Info() always reports BFF by default.
    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.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!