How to adjust music volume on an playing AVI - file?

BlitzPlus Forums/BlitzPlus Programming/How to adjust music volume on an playing AVI - file?

PowerPC603(Posted 2003) [#1]
Can you adjust the volume of the AVI-file that's playing?

This is my current code:


Graphics3D 1024,768,0,1
SetBuffer BackBuffer()

file$=Replace$(CommandLine$(), Chr$(34), "")
movie=OpenMovie(file$)

Repeat
Cls
DrawMovie movie, 0, 0
Flip
Until KeyHit(1)

CloseMovie movie
End


When i tried to add this just before the repeat-loop:

SoundVolume movie, 0.5

the movie was zoomed in (???), and the soundvolume stays the same.

How can I change that volume of my movie?