I'm trying to make an app which plays a live stream inside the android app.
The source path is:
"http://mediasuite.316networks.com/templates/livefull2.swf"
which is a flash file, played with adobe flash player.
I've had a look at both VideoView
and WebView
.
So i have a few questions:
1) Assuming that adobe flash is installed on the android device (and yes the stream can be played via a browser), how can I play this live video stream inside the app?
2)
Using VideoView
, i have managed to get youtube videos playing with the MediaController
.
But is there a way to do this with a live stream that requires flash?
3) Finally, in my situation, which view should I be using to get this flash live stream video played in the application? and how?
Cheers!