YouTube API, how do I write a youtube player?

SeaDooFan

Member
Licensed User
Longtime User
Hi guys,
I have learned by way around in B4A and now and looking forward to write something like a youtube player player... but, where do I start?

If I understand right there were some sort of youtube api java libraries that could be used with b4a somewhere, right?

Thanks!
 

aemedwedew

New Member
Licensed User
Longtime User
Webview can play youtube videos

I have found using the following method works to display videos. Only one Webview is allowed.

Dim mwvpanel As WebView
mwvpanel.Initialize("mwvpanel")
strURL="http://www.youtube.com/embed/plOiBgle8bQ?playlist=0Ja_SSdjspQ,Apa02kD6F2w&autoplay=1&loop=1"
mwvpanel.LoadUrl(strURL)
 
Upvote 0
Top