Un4Seen Bass library MP3 etc...

lindomar

Member
Licensed User
Longtime User
Is this my library bass for Basic4android.

BASS for Android


B4X:
'Simple example:
#Region Module Attributes
   #FullScreen: False
   #IncludeTitle: True
   #ApplicationLabel: Example Bass
   #VersionCode: 1
   #VersionName: 0.01
   #SupportedOrientations: unspecified
   #CanInstallToExternalStorage: False
#End Region

Sub Process_Globals

End Sub

Sub Globals
   Dim LibBass      As BASS
   Dim stream       As Int  
End Sub

Sub Activity_Create(FirstTime As Boolean)     
   LibBass.BASS_Init(-1,44100,0)
   LibBass.BASS_StreamFree(stream)
   stream = LibBass.BASS_StreamCreateFile("/mnt/extsd/lovebass.mp3", 0, 0, 0)
   LibBass.BASS_ChannelPlay(stream, False)
End Sub

Sub Activity_Resume
  
End Sub

Sub Activity_Pause (UserClosed As Boolean)
   LibBass.BASS_Free()  
End Sub

Download lib for B4A: BASS and AAC LIB
[url]http://www.4shared.com/rar/vvT23MCY/BASS_AAC.html?[/URL]

...
 
Last edited:

stevel05

Expert
Licensed User
Longtime User
That's a huge library, looks good. I'll have a play with it over the next couple of days although there's so much in it. I did get an ogg file to play.

I did consider having a go at wrapping it, but the size of it, and the required licence fee to use it, put me off. But I'll have fun playing with it now you've done it.

Have you created an app with it that's on the market?

Thanks for sharing.
 

pjwaltonuk

New Member
Licensed User
Longtime User
Sadly the sendspace link seems to have expired :( - Could really use this wrapper if anyone could reupload it ?
 
Top