Changing the volume of selected audio strips in Blender VSE

To set the desired volume for multiple audio strips at once in Blender VSE, select them, then in the Properties panel, in the Strip tab, in the Sound section, type the desired number in the Volume field, hold down the Alt key, and press Enter. Holding the Alt key changes the volume for all selected strips; if we don’t hold it down, the volume will only change for the currently active strip. We can also change the volume for all selected audio strips at once using the Blender Python API.

Let’s write a simple script to change the volume for all selected audio strips in VSE.

First, get a list of all selected audio strips.

Now loop through this list and change the volume value for each strip.

After executing this script, all selected audio strips will be set to a volume of 3.

If we don’t just want to set the same volume for all selected audio strips, but, for example, increase their volume by 3, we only need to make one change to our code.

We’ve changed the assignment operator to an increment operator.

This is convenient if we don’t want to set the same volume for all strips, but want to increase or decrease their volume by a certain amount.

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comment
Newest
Oldest Most Voted