Hi there,
I am using mediaplayerstream for my android radio apps. Its working fine but ,
device waiting so long for load stream media
here is the codes :
I am using mediaplayerstream for my android radio apps. Its working fine but ,
device waiting so long for load stream media
here is the codes :
B4X:
Sub Process_Globals
Dim mp As MediaPlayerStream
Dim vol As Float
End Sub
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
mp.Initialize("mp")
End If
mp.Load("http://radyo.normworks.com:8005/")
vol = 0.5
End Sub
Sub Activity_Resume
mp.play
End Sub