Question
Streaming audio volume level
Hi,
How could I change volume level for streaming FLV file by actionscript?
Here is my code:
/////
function initStreams() {
client_nc = new NetConnection();
client_nc.connect(rtmpServerPath);
client_nc.onStatus = function(info) {
trace("audio Level: " + info.level + " Code: " + info.code);
}
myAudio= new NetStream(client_nc);
}
initStreams();
myAudio.play(fileName);
/////
Can I do it without FLVPlayback component?
The way I am trying to do it now : voiceOver.setVolume(50) does not work.
Thanks you.
How could I change volume level for streaming FLV file by actionscript?
Here is my code:
/////
function initStreams() {
client_nc = new NetConnection();
client_nc.connect(rtmpServerPath);
client_nc.onStatus = function(info) {
trace("audio Level: " + info.level + " Code: " + info.code);
}
myAudio= new NetStream(client_nc);
}
initStreams();
myAudio.play(fileName);
/////
Can I do it without FLVPlayback component?
The way I am trying to do it now : voiceOver.setVolume(50) does not work.
Thanks you.