Thursday, November 11, 2010

Movie looping in the iPad

None of the movie players currently available for the iPad (the iPad Videos app, VLC, CineXPlayer) will loop a movie continuously. A quick search suggested playing the movie in the browser using a bit of HTML5.
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
      <title>Parrot AR Drone</title>
    </script>

  </head>
  <body>
    
<video src="http://mydomain.com/mymovie.mp4" width="576" height="576" controls="controls" autoplay="autoplay" loop = "loop" qtnext1="goto0" controller="false" kioskmode="true"></video>

  </body>

</html>
Note that this won't work for flash movies.
 

No comments:

Post a Comment