user557105
user557105

Reputation: 73

Flash Video Player to play MP4 files for Web

I am looking for a flash video player that can play MP4 files and can be embedded in the web page. I know that JW Player can do this but its not free for commercial use. I have searched this site, there are examples for flv players but none of mp4 player.

Upvotes: 1

Views: 13384

Answers (3)

YouHope
YouHope

Reputation: 1

Even i am looking for various players which are free for Commercial use. I came across couple of them but it was of little use when tried running on different browsers. Below are few free player as per my knowledge:

1) FLV video Player http://www.a2zwebhelp.com/flv-mp4-video-player

2) Video-Js Check for it online. You should get it.

There are many others which are free for non-commercial use. (Bad luck)

If you are looking for fallback then HTML 5 Video tag is available. But if u are looking for a player which will work for mp4 and flv you need to get a player.

For your convinience i have given below the code for fallback. Considering that we have mp4, flv files available for same video.

<video width="320" height="240" controls>
      <source src="small.mp4" type="video/mp4">
      <object data="small.mp4" width="320" height="240">
       <embed src="small.flv" width="320" height="240">
      </object> 
    </video>

Make sure that you refine the code before using.

Upvotes: 0

Ben
Ben

Reputation: 31

f4player - simple but it works.

Upvotes: 3

Jon Skarpeteig
Jon Skarpeteig

Reputation: 4128

You can use flowplayer, which has a free GPL version.

Upvotes: 0

Related Questions