Author Topic: Mute on Bass  (Read 3090 times)

MrTDelphi

  • Posts: 111
Mute on Bass
« on: 15 Jan '06 - 12:45 »
How do I mute audio out from bass function..?
I think its can use paused, but its not right mute..
can help me?
Thanks, LuQ

Chris

  • Posts: 2217
Re: Mute on Bass
« Reply #1 on: 15 Jan '06 - 13:04 »
Hi
do you mean mute a Channel or Mute Complete all was have to do with Bass ??

Mute a Channel :  BASS_ChannelSetAttributes(Chan,-1,0,-101); // 0 = silent

Mute complete all Channels

BASS_SetConfig(BASS_CONFIG_GVOL_STREAM,0);  // 0 = silent
Greets Chris

MrTDelphi

  • Posts: 111
Re: Mute on Bass
« Reply #2 on: 19 Jan '06 - 17:22 »
Hi Chris Thanks for Ur Info, now I got that
I think bass have a function like Bass_mute()...., but no Pblm

Best, LuQ

marciod

  • Posts: 10
Re: Mute on Bass
« Reply #3 on: 27 Feb '24 - 13:23 »
You can add to silence (mute):
BASS_ChannelSetAttribute(FStream, BASS_ATTRIB_VOL, 0);
and for unmute:
BASS_ChannelSetAttribute(FStream, BASS_ATTRIB_VOL, 1);