I have a JavaScript:
<script type="text/javascript">var c = "Mokslas ir gamta"; </script>
<script>type="text/javascript" src="http://tv.delfi.lt/js/embed.js"></script>
<script>var _delfiVideoX = 680;var _delfiVideoY = 385;var _delfiVideoSalt = "ttdGHNTK";_createDelfiVideo();</script>
Is it possible to stream that FLV video on android? All I could get was static image with video player controls and that's it.
WebView view = (WebView) findViewById(R.id.delfi_vide_wv);
view.getSettings().setJavaScriptEnabled(true);
view.loadData(//script above wrapped in html tags//, "text/html", "utf-8");
Any hint would be appreciated :)