Author Topic: BASS_FX 2.4.12.1  (Read 839890 times)

workoutDJ

  • Posts: 28
Re: BASS_FX 2.4.12.1
« Reply #750 on: 23 Jul '19 - 12:41 »
I have copied the DLL files to both the BIN folder and the DEBUG folder.  Which is the best version of VB for me to code with:  VB6 or VB15 ?    Having a lot of problems attempting to get the libraries referenced and available.  Thanks

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #751 on: 23 Jul '19 - 13:58 »
VB6 doesn't support multithreading well (eg. callbacks) so I would suggest using VB.Net instead. I'm not a .Net user myself, but I think you only need to add a reference to BASS.Net, not the BASS/add-on DLLs. What is the exact error message that you are seeing?

workoutDJ

  • Posts: 28
Re: BASS_FX 2.4.12.1
« Reply #752 on: 23 Jul '19 - 14:04 »
I get:  'BASS_Mixer_StreamCreate' is not a member of 'Un4Seen.BassMix     I have all of the DLL files using the latest versions, in both the BIN and DEBUG folders.   Funny thing is that this was working about four days ago.  I am having trouble with the Mixer code.   Thanks.

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #753 on: 23 Jul '19 - 15:19 »
Strange, I'm not really sure what could be causing that. Are you only having the problem with that one function, and none of the other BASS/BASSmix/BASS_FX functions? I notice in the code you posted that you omitted the BassMix and BassFx prefixes in some of the calls.

workoutDJ

  • Posts: 28
Re: BASS_FX 2.4.12.1
« Reply #754 on: 23 Jul '19 - 15:25 »
I will prefix all my calls.   ALSO, I am going to create a new, fresh, environment of code.  Again, thanks for your help.

teq

  • Posts: 80
Re: BASS_FX 2.4.12.1
« Reply #755 on: 31 Oct '19 - 19:42 »
Hi there! I'am trying to make pitch shifting effect like in "Music Speed ​​Changer" (Android) with BASS, but the result is not even so good as if this app. "Music Speed ​​Changer" uses Superpowered, may be this lib just better, than BASS built-in? Or I should tweak settings and it's 100% possible to achieve the same quality ???

teq

  • Posts: 80
Re: BASS_FX 2.4.12.1
« Reply #756 on: 26 Dec '19 - 14:57 »
Hi there! Are you going to update BASS_FX to the latest version?  ;)

artistXenon

  • Guest
Re: BASS_FX 2.4.12.1
« Reply #757 on: 13 Jul '21 - 14:54 »
may I please request for a x86_64 version compilation of BASS_FX on android?  It seems only arm64, arm, x86 are supported 😢

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #758 on: 13 Jul '21 - 16:23 »
An update including an x86_64 build is available here:

   www.un4seen.com/files/z/0/bass_fx24-android-beta.zip

fmcoder

  • Posts: 485
Re: BASS_FX 2.4.12.1
« Reply #759 on: 10 May '22 - 14:26 »
There appears to be a bug in the Peak EQ implementation in the 64-bit Windows version (does not happen on 32-bit). After running a while, sometimes a day, sometimes more, the right channel becomes silent. Does not happen always, but regular enough to be a problem.

The code that sets the DSP:
Code: [Select]
var   EQ: BASS_BFX_PEAKEQ;
...
        HFX := BASS_ChannelSetFX(Chan, BASS_FX_BFX_PEAKEQ, 49);
        with EQ do
        begin
          fBandwidth := 2.5;
          FQ := 0;
          fGain := 0;
          lChannel := BASS_BFX_CHANALL;
          for I := 0 to 10 - 1 do
          begin
            lBand := I;
            fCenter := PluginSettings.EqBands[I].CenterFreq; //values are in 31-16000Hz range
            BASS_FXSetParameters(HFX, @EQ);
          end;
        end;

And updating it the following way
Code: [Select]
  for I := 0 to 10 - 1 do
  begin
    EQ.lBand := I;
    BASS_FXGetParameters(HFX, @EQ);
    EQ.fGain := ...//actual gain value, -15...+15;
    BASS_FXSetParameters(HFX, @EQ);
  end;

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #760 on: 10 May '22 - 17:39 »
Is it only ever the right channel that's affected, never the left? That seems strange if so, as the BASS_FX_BFX_PEAKEQ processing is identical on all channels. Is it definitely caused by the BASS_FX_BFX_PEAKEQ effect, ie. it never happens without that?

Does the problem begin while sound is playing or only after a period of silence? Does it go away if you call BASS_FXReset or BASS_ChannelSetPosition? If the stream is floating-point, please check the sample values when it's happening, eg. are they 0s or NaNs?

Also confirm that you're using the latest versions of BASS_FX (2.4.12.6) and BASS (2.4.16.7).

fmcoder

  • Posts: 485
Re: BASS_FX 2.4.12.1
« Reply #761 on: 11 May '22 - 17:51 »
I use bass_fx 2.4.12.6 and bass 2.4.16.16.

The EQ is set on the mixer channel, and from what I've seen myself and user reports, it's always the left channel that disappears. The mixer channel is floating point and decoding. If the EQ effect is removed, the playback returns to normal. It never happens if the EQ was not applied. I'm not sure if there's silence but I suppose it happens regardless.

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #762 on: 12 May '22 - 15:33 »
To confirm what the silence is (eg. 0s or NaNs), please set a WAV writer on the same stream as the EQ when the problem happens. For example, like this:

Code: [Select]
BASS_Encode_Start(stream, "rightsilence.wav", BASS_ENCODE_PCM | BASS_ENCODE_AUTOFREE, 0, 0);

And then upload the written file to have a look at here:

   ftp.un4seen.com/incoming/

fmcoder

  • Posts: 485
Re: BASS_FX 2.4.12.1
« Reply #763 on: 13 May '22 - 15:37 »
OK, it'll take a while though as it only happens occasionally and after several days of operation.

fmcoder

  • Posts: 485
Re: BASS_FX 2.4.12.1
« Reply #764 on: 18 May '22 - 11:35 »
As usual in such cases, the bug still not reproduced, but I have seen many reports from users so I'm sure it's there :) Ian, can you please check the EQ implementation code to see if there are any potential issues that could lead to such a behavior in 64-bits?

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #765 on: 18 May '22 - 15:40 »
I can't see any reason in the BASS_FX code for the problem you describe, so unfortunately I'm not sure what it could be. The most puzzling thing is why only one channel would be affected. Is the "lChannel" parameter sometimes not set to BASS_BFX_CHANALL? Btw, I just noticed that you first wrote "the right channel becomes silent" and then later wrote "it's always the left channel that disappears". Does it vary?

To confirm, when you wrote "If the EQ effect is removed, the playback returns to normal", does that mean if BASS_ChannelRemoveFX is called on the EQ effect while the problem is happening then the problem immediately stops? If so, is it only a BASS_ChannelRemoveFX call or are other changes applied too? If there are other changes then please try disabling those to see if the BASS_ChannelRemoveFX call alone stops the problem.

Are you using BASS_ATTRIB_PAN at all?

fmcoder

  • Posts: 485
Re: BASS_FX 2.4.12.1
« Reply #766 on: 20 May '22 - 09:12 »
Is the "lChannel" parameter sometimes not set to BASS_BFX_CHANALL? Btw, I just noticed that you first wrote "the right channel becomes silent" and then later wrote "it's always the left channel that disappears". Does it vary?
It's applied for all channels: http://www.un4seen.com/forum/?topic=2181.msg138328#msg138328
Only right channel disappears, left is never affected - I'm sorry for the mistake.

To confirm, when you wrote "If the EQ effect is removed, the playback returns to normal", does that mean if BASS_ChannelRemoveFX is called on the EQ effect while the problem is happening then the problem immediately stops? If so, is it only a BASS_ChannelRemoveFX call or are other changes applied too? If there are other changes then please try disabling those to see if the BASS_ChannelRemoveFX call alone stops the problem.
Yes, after calling BASS_ChannelRemoveFX to remove the peaking EQ, the problem disappears.

Are you using BASS_ATTRIB_PAN at all?
No, it's never used.

AndyMK

  • Posts: 212
Re: BASS_FX 2.4.12.1
« Reply #767 on: 30 May '22 - 07:25 »
Hi, will we get a universal binary that supports apple silicon natively?

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #768 on: 30 May '22 - 14:09 »
Support should already be included in the latest BASS_FX release (2.4.12.6). Is it not working when you try it?

gicci

  • Posts: 119
Re: BASS_FX 2.4.12.1
« Reply #769 on: 25 Aug '22 - 23:24 »
I am implementing a 6 bands equalizer using BASS_BFX_PEAKEQ in an Android app. In its latest release I am starting to get reports of failures of the BASS_FXSetParameters call when setting correct values on the effect, with error 20. It is not a very common error and I am not able to reproduce it. This is an example of values I set successfully on my device, but for which I have reports with errors (the default flat equalizer):

Code: [Select]
BASS_ChannelSetFX() called with: handle = [-2147483494], type = [65540], priority = [6]
BASS_ChannelSetFX() returned: -2147483473
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@835e204]
lBand=0, fBandwidth=1.6687073, fQ=0.0, fCenter=39.227276, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@ce6a3ed]
lBand=1, fBandwidth=1.6687073, fQ=0.0, fCenter=124.71512, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@a743222]
lBand=2, fBandwidth=1.6687073, fQ=0.0, fCenter=396.50626, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@30be4b3]
lBand=3, fBandwidth=1.6687073, fQ=0.0, fCenter=1260.6107, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@1311a70]
lBand=4, fBandwidth=1.6687073, fQ=0.0, fCenter=4007.8542, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true
BASS_FXSetParameters() called with: handle = [-2147483473], params = [com.un4seen.bass.BASS_FX$BASS_BFX_PEAKEQ@a9691e9]
lBand=5, fBandwidth=1.6687073, fQ=0.0, fCenter=12742.154, fGain=0.0, lChannel=-1
BASS_FXSetParameters() returned: true

No error was reported in previous version, I have not touched the FX handling since a lot of time. I will continue investigating but it would help if you could provide information about which situations could trigger that error. Thanks.

Ian @ un4seen

  • Administrator
  • Posts: 26108
Re: BASS_FX 2.4.12.1
« Reply #770 on: 26 Aug '22 - 16:08 »
I think the most likely cause of that error (BASS_ERROR_ILLPARAM) is that the "fCenter" parameter is too high for the stream's sample rate. Note that it needs to be less than half the sample rate. For example, trying to use fCenter=12742.154 with a sample rate of 22050Hz will fail. You can probably just ignore the error - the other bands should still work.

gicci

  • Posts: 119
Re: BASS_FX 2.4.12.1
« Reply #771 on: 28 Aug '22 - 23:56 »
I think the most likely cause of that error (BASS_ERROR_ILLPARAM) is that the "fCenter" parameter is too high for the stream's sample rate. Note that it needs to be less than half the sample rate. For example, trying to use fCenter=12742.154 with a sample rate of 22050Hz will fail. You can probably just ignore the error - the other bands should still work.

Thanks, it could be that in some situations the output sampling rate will be lower than intended, leading to the situation you described. I will add some additional tracing to verify if this is the case.

SWM1

  • Posts: 6
Re: BASS_FX 2.4.12.1
« Reply #772 on: 27 May '24 - 14:29 »
Dynamic loading of the libbass_fx.so library into the Lazarus project.
https://sw-tech-blog.blogspot.com/2024/05/dynamic-loading-of-libbassfxso-library.html

SWM1

  • Posts: 6
Re: BASS_FX 2.4.12.1
« Reply #773 on: 11 Sep '24 - 17:35 »
Hello friends! I encountered a problem with my player.
When I added the BASS_FX_BFX_FLANGER effect to it. It works, but unlike other effects, it is lost in the channel when changing the track, or even when changing the parameters of other connected effects while playing the track.
When I change the track, I disable and reconnect this effect to the channel, but it also depends on other effects in the channel.
And what should I do in this case?



Sorry, found a bug in my code!
« Last Edit: 11 Sep '24 - 17:46 by SWM1 »

firemen

  • Posts: 163
Re: BASS_FX 2.4.12.1
« Reply #774 on: 14 Sep '24 - 12:07 »
what version of soundtouch are you using?
latest 2.3.3. if less than 2.3.0 update the code please
https://codeberg.org/soundtouch/soundtouch

but in general it would be great to use a more advanced algorithm:
https://github.com/kupix/bungee
« Last Edit: 15 Sep '24 - 09:35 by firemen »