0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

オーディオレイヤーのアウト点に向かってボリュームフェードアウトするエクスプレッション

Last updated at Posted at 2023-04-05

TL;DR

いちいちキーフレーム打つのめんどくさいなと思って作りました。

エクスプレッション

//アウト点の何秒前からフェードアウト開始するか
fadeTime = 2;
//アウト点のボリュームレベル(ステレオLR)
endVol = [-48, -48];

startVol = thisComp.layer(index).audio.audioLevels.valueAtTime(outPoint - fadeTime);
linear(time, outPoint - fadeTime, outPoint, startVol, endVol);

使い方はこんな感じです。
2023-04-06 01_43_21.png

おわりに

ワークエリアのイン・アウトに対応するのもアリかもしれない

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?