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
 

nicieri

Active Member
Licensed User
Longtime User
"Can't play this video".

But the format is correct, this video was filmed with the same app!
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…