Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

BASS static lib v.2.4

Featured Replies

Posted

BASS static lib v.2.4 MASM32 player example

BASS.static.lib.v.2.4.MASM32.player.zip

Edited by ::: - phpbb3 - :::

wonderfulll

great! It seems like a mod music version, without BASS_SampleLoad.

How can I use it in C or C++?

BTW, the simple player source may have some bugs.

It should not free resources during WM_DESTROY message,

It should process these actions during WM_CLOSE message.

Thank you.

Edited by alaphate

Thanks! it's smaller size.

  • Author

bass v2.4.9

bass.2.4.9.zip

While I appreciate your attempts to share a working bass lib..

do you actually test your attachments at all?

I mean does it still play the supported formats?

Also what are you trying to achieve compared to the

(at least 100% working) bass lib posted by ghandi?

I'm just curious, since all your libs look quite damaged over here..

The updated static lib may have some bugs when using BASS_SampleLoad.

Here is the main code and full project attached.

The project has been tested with original lib with no errors.

int main()
{
if(!BASS_Init( -1, 44100, 128, 0, 0)) {
printf("BASS_Init failed! \n");
return 1;
}
HSAMPLE hMusic =0;
hMusic = BASS_SampleLoad(false, ".\\bird.mp3\0", 0, 0, 1, 0);
if(!hMusic) {
printf("hMusice = 0 \n");
return 1;
}
HCHANNEL hMainFX = 0;
hMainFX = BASS_SampleGetChannel(hMusic, FALSE);
if(!hMainFX) {
printf("hMainFX = 0 \n");
return 1;
}
BASS_ChannelPlay(hMainFX, FALSE);
printf("press any key to stop the music!");
getch();
return 0;
}

baseTest.zip

Edited by alaphate

  • Author

::: - phpbb3 - :::

Great! Thank you so much.

Sigh..

PS: For the ones interested, check the link posted above by Aguila

  • 3 weeks later...

netradio example does not work with etogy lib.

  • 1 year later...

please update new version. 2.4.10.0


thanx


Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.