YukkuriMovieMaker.Player.Video.EffectDescription
Edit on GitHub

Last updated: July 23, 2026

AI 要約

定義

名前空間: YukkuriMovieMaker.Player.Video

アセンブリ: YukkuriMovieMaker.Plugin.dll

IVideoEffectProcessor.Update に渡されるフレームのコンテキスト情報です。

public record EffectDescription : TimelineItemSourceDescription

継承 System.Object → YukkuriMovieMaker.Player.Video.TimelineSourceDescription → YukkuriMovieMaker.Player.Video.TimelineItemSourceDescriptionYukkuriMovieMaker.Player.Video.TimelineItemSourceDescription → YukkuriMovieMaker.Player.Video.EffectDescription

注釈

TimelineItemSourceDescription のすべてのプロパティーに加えて、以下の情報を持ちます。

  • DrawDescription — 現時点の描画状態(座標・ズーム・回転・不透明度など)
  • InputIndex / InputCount — このエフェクトが受け取る入力の番号と総数(複数入力エフェクト用)
  • GroupIndex / GroupCount — グループ内でのエフェクトの位置と総数

プロパティー

名前 説明
DrawDescription YukkuriMovieMaker.Player.Video.DrawDescription 現在の描画状態を保持する DrawDescription です。
GroupCount System.Int32 エフェクトグループ内の総エフェクト数を取得します。
GroupIndex System.Int32 エフェクトグループ内でのインデックスを取得します。
InputCount System.Int32 このエフェクトへの入力総数を取得します。
InputIndex System.Int32 このエフェクトへの入力番号(0始まり)を取得します。

DrawDescription

現在の描画状態を保持する DrawDescription です。

public DrawDescription DrawDescription { get; init; }

GroupCount

エフェクトグループ内の総エフェクト数を取得します。

public Int32 GroupCount { get; init; }

プロパティー値

System.Int32

GroupIndex

エフェクトグループ内でのインデックスを取得します。

public Int32 GroupIndex { get; init; }

プロパティー値

System.Int32

InputCount

このエフェクトへの入力総数を取得します。

public Int32 InputCount { get; init; }

プロパティー値

System.Int32

InputIndex

このエフェクトへの入力番号(0始まり)を取得します。

public Int32 InputIndex { get; init; }

プロパティー値

System.Int32