Android Question Playing Video from https://.... ???

nicieri

Active Member
Licensed User
Longtime User
Hi, i need to play a Video from a URL of type "https" from Amazon S3

The file is .mov

I've tried VideoView .... vv.LoadVideo("http",url)... vv.LoadVideo("https",url) ... nothing...

Play with streamVideo and nothing...

Play with WebView

Dim HTML As StringBuilder
HTML.Initialize
HTML.Append("<!DOCTYPE html>" & CRLF)
HTML.Append("<html>" & CRLF)
HTML.Append("<head>" & CRLF)
HTML.Append("<title>Video</title>" & CRLF)
HTML.Append("</head>" & CRLF)
HTML.Append("<body>" & CRLF)

HTML.Append("<video id='vv' src='"& url &"' controls='controls'></video>" & CRLF)

HTML.Append("</body>" & CRLF)
HTML.Append("</html>" & CRLF)


And nothing... I can see the player.. but this doesn't play anything (This html code work in a browser).

How can I play this video in my App? Any idea?

Thanks
 
Top