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?
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?