Wish: Streaming Audio/Video Player

susu

Well-Known Member
Licensed User
Longtime User
I just want a media player that can play "online" audio/video. Thank you :D
 

susu

Well-Known Member
Licensed User
Longtime User
Dreaming about it :(
 

JogiDroid

Member
Licensed User
Longtime User
If it is limitation of actual media player... some streaming might be possible with VCL player (I dont know when it will be released.. I was just searching way to play some recorded TV streams,..)
 

susu

Well-Known Member
Licensed User
Longtime User
Android can play media from anywhere: raw source, file or URL. It's just a few of code lines to play streaming media. Check it here:
Audio and Video | Android Developers

I need it, Erel!
 

Cor

Active Member
Licensed User
Longtime User
My next project (Guitar Licks) in all styles need badly streaming

Is there a time span for streaming?

grCor
 

Rusty

Well-Known Member
Licensed User
Longtime User
streaming video viewer

Any chance this ability is available? if so, is there a tutorial or sample code?
Thanks,
 

vb1992

Well-Known Member
Licensed User
Longtime User
this should work:)

looks better in landscape...

include the audio library

B4X:
Sub Globals
    Dim vv As VideoView
   Dim Button1 As Button
End Sub


Sub Activity_Create(FirstTime As Boolean)
   
   'Activity.LoadLayout("playmp4")
   vv.Initialize("vv")
    Activity.AddView(vv, 1dip, 1dip, activity.width, 450dip)
   button1.Initialize("button1")
   button1.Text = "play"
      Activity.AddView(button1, 50dip, 50dip, 150dip, 150dip)
   
    
   
End Sub

Sub vv_Complete
    Msgbox("video completed","completed")
   vv.Stop
End Sub

Sub Button1_Down

     vv.LoadVideo("http","http://videoqube.com/iphone/95.mp4")
   
   button1.Visible=False
   
   Msgbox("Loading and buffering video","Loading")
    
   ToastMessageShow("loading streaming video....", True)
   
   vv.Play

End Sub
 
Last edited:

venj

Member
Licensed User
Longtime User
It is in the features list and it will be added.

Will it be possible to stream audio/video directly within the SMB library ? It would be awesome ! Thank's in advance !
Thank's anyway for all you did until now ...

JGV, Quebec, Canada
 
Top