The first logic and possible answer:
To convert all the videos the user uploads to flash and use a flash player.
Now, having the .flv flash video file, the only way to view the video in xhtml compatible code is using the following javascript:
<body>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
function createPlayer() {
var flashvars = {file:"video.flv", autostart:"true"}
var params = {allowfullscreen:"true", allowscriptaccess:"always"}
var attributes = {id:"player1", name:"player1" }
swfobject.embedSWF("player.swf", "placeholder1", "320", "196", "9.0.115", false, flashvars, params, attributes); }
</script>
</head>
<body onload="createPlayer();">
<div id="wrapper">
<div id="placeholder1"></div>
</div>
</body>
</body>
I can show the .flv file in a separeta window, using a NetWebPage proc but I dont realized how to include this code in the Hotimage websource proc.
Problem is, you have to call a java function (see the body onload)
Any Idea??
Thanks
Alberto