DoubleWeave のバックアップ差分(No.3)


  • 追加された行はこの色です。
  • 削除された行はこの色です。
 DoubleWeave(clip clip)

// 入力クリップがフィールドベースの場合、DoubleWeaveフィルタは、2倍のフレーム数を作り出すことを除いては、[[Weave]]と同じように動作します: フィールド0と1を組み合わせてフレーム0に、フィールド2と3をフレーム1に... とする代わりに、フィールド0と1を結合してフレーム0に、フィールド1と2をフレーム1に... とします。フレームレートやフレーム総数は変更しません。
// 入力クリップがフィールドベースの場合、DoubleWeaveフィルタは、([[Weave]]の)2倍のフレーム数を作り出すことを除いては、[[Weave]]と同じように動作します: フィールド0と1を組み合わせてフレーム0に、フィールド2と3をフレーム1に... とする代わりに、フィールド0と1を結合してフレーム0に、フィールド1と2をフレーム1に... とします。フレームレートやフレーム総数は変更しません。

If the input clip is field-based, the DoubleWeave filter operates like Weave, except that it produces double the number of frames: instead of combining fields 0 and 1 into frame 0, fields 2 and 3 into frame 1, and so on, it combines fields 0 and 1 into frame 0, fields 1 and 2 into frame 1, and so on. It does not change the frame rate or frame count.

// 入力クリップがフレームベースの場合、このフィルタは、ちょうど、SeparateFieldsで、最初にクリップをフィールドに分離したかのように動作します。

If the input clip is frame-based, this filter acts just as though you'd separated it into fields with SeparateFields first.

// 実際に、Weaveは、DoubleWeave().[[SelectEven>Select]]()の短縮形です。

Weave is actually just a shorthand for DoubleWeave followed by [[SelectEven>Select]].

// おそらく、

Most likely you will want to use a filter like [[SelectOdd>Select]] or [[Pulldown]] after using this filter, unless you really want a 50fps or 60fps video. It may seem inefficient to interlace every pair of fields only to immediately throw away half of the resulting frames. But actually, because AviSynth only generates frames on demand, frames that are not needed will never be generated in the first place.

If you're processing field-based video, like video-camera footage, you probably won't need this filter. But if you're processing NTSC video converted from film and you plan to use the [[Pulldown]] filter, you need to use DoubleWeave first. See the [[Pulldown]] filter for an explanation.

If you're processing PAL video converted from film, you don't need Pulldown, but you might want to use DoubleWeave in the following situation:

 # Duplicate the functionality of the VirtualDub "PAL deinterlace" filter
 # VirtualDubの"PAL deinterlace"フィルタの機能を複製する。
 DoubleWeave SelectOdd

#hr
// 註: このページは、http://www.avisynth.org/DoubleWeaveの日本語訳です。