0
   

bow to build a video player?

 
 
Reply Tue 5 Apr, 2011 07:14 pm
hi is there anyone here that can tell me which code language or languages are the best for me to use to build a video player?
  • Topic Stats
  • Top Replies
  • Link to this Topic
Type: Question • Score: 0 • Views: 2,021 • Replies: 5
No top replies

 
Robert Gentel
 
  1  
Reply Tue 5 Apr, 2011 07:20 pm
@rich44689,
Yes.
rich44689
 
  1  
Reply Tue 5 Apr, 2011 07:40 pm
@Robert Gentel,
well what languages do i use for the best and number 1 securest video player? and also to protect my player from any hackers stealing ym code.
Robert Gentel
 
  1  
Reply Tue 5 Apr, 2011 07:43 pm
@rich44689,
What are you talking about? E.g. what platform you are talking about is a nice start but get even more specific from there if you want a meaningful answer, a single "best" does not exist for all use cases.
rich44689
 
  1  
Reply Wed 6 Apr, 2011 12:37 pm
@Robert Gentel,
can you please fix this code for me?

<!DOCTYPE HTML>
<html>
<body>

<canvas id="myCanvas" width="700" height="600" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>

<script type="text/javascript">

var c=document.getElementById("myCanvas");
var cxt=c.getContext("2d");
cxt.fillStyle="#FF0000";
cxt.fillRect(0,0,700,600);

</script>

<script type="text/javascript">

localStorage.lastname="Smith";
document.write("Last name: " + localStorage.lastname);

</script>

<script type="text/javascript">
if (localStorage.pagecount)
{
localStorage.pagecount=Number(localStorage.pagecount) +1;
}
else
{
localStorage.pagecount=1;
}
document.write("Visits "+ localStorage.pagecount + " time(s).");
</script>


</body>
</html>
Robert Gentel
 
  1  
Reply Wed 6 Apr, 2011 12:47 pm
@rich44689,
I am willing to help with information, not with free programming.
0 Replies
 
 

Related Topics

 
  1. Forums
  2. » bow to build a video player?
Copyright © 2024 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.03 seconds on 04/24/2024 at 09:51:50