-1

I have been looking all over the web googling but i can't find a single video player player for html5 or jquery to play .avis. I am open for any suggestions in how to solve this problem.

1 Answers1

1

the AVI format isn't an HTML format. You can use a free tool such as Miro Video Converter to generate the formats you need to support all browsers. Then you just use a video tag...

<video autobuffer="" controls="">
    <source type="video/mp4" src="video.mp4"></source>
    <source type="video/ogg" src="video.ogv"></source>
    <source type="video/webm" src="video.webm"></source>
</video>
Fenton
  • 241,084
  • 71
  • 387
  • 401
  • I have allot of .avi files and growing how can i do this prosses automatically – Asim Poptani Jul 12 '13 at 09:58
  • You can run batches in the latest version. – Fenton Jul 12 '13 at 10:00
  • @AsimPoptani You can select multiple files and convert them all with 1 click. Just click and come back when it's done :) – Reinstate Monica Cellio Jul 12 '13 at 10:02
  • @Archer ok i could do that however lets say person x uploaded a video how would i automatically start converting the video immediatly? – Asim Poptani Jul 12 '13 at 10:04
  • When video uploading is done, check for the extension and if avi pass this file as a parameter to the batch procedure to convert the file into different format, till then keeps user waiting sayinh process is converting your video – Ankur Verma Jul 12 '13 at 10:22