Item¶
Item.getActiveItem()¶
getActiveItem(): Item | null;
app.project.activeItem に同じ。なぜ入れたのか分からないので、将来的に取り除くやも。
Item.touchActiveItem()¶
touchActiveItem(): void;
アクティブなアイテムが更新されたとAEに通知する。
Atarabi.item.touchActiveItem();
Atarabi.item.touchActiveItem();
Added in version 0.2.0.
Item.moveTimeStepActiveItem()¶
moveTimeStepActiveItem(steps: number): void;
アクティブなアイテムの現在フレームを指定ステップ数だけ前後に移動させる。
Atarabi.item.moveTimeStepActiveItem(1);
Atarabi.item.moveTimeStepActiveItem(1);
Added in version 0.2.0.
Item.getFootageSoundDataFormat()¶
getFootageSoundDataFormat(item: FootageItem): SoundDataFormat;
アイテムの音声のサンプルレート、モノラルorステレオなどを取得する。
参照: AEGP_GetFootageSoundDataFormat
const item = app.project.activeItem;
if (item instanceof FootageItem) {
const soundDataFormat = Atarabi.item.getFootageSoundDataFormat(item);
}
var item = app.project.activeItem;
if (item instanceof FootageItem) {
var soundDataFormat = Atarabi.item.getFootageSoundDataFormat(item);
}
Added in version 0.2.0.