Skip to content Skip to sidebar Skip to footer

How To Play A Flv Video In Html5

i have a video player Now this vid

Solution 1:

flv videos is not compatible with video tag

You have 2 options from here:

1.You use flash based video players (i.e. Flowplayer) or create your own

Here's a sample usage of flow player:

<!-- player container--><ahref="http://yourwebsite.com/yourflvvideourlhere.flv"class="player"style="display:block;width:425px;height:300px;margin:10px auto"id="player"></a>

// install flowplayer
$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.18.swf");
  1. Convert your video file to a format that is compatible with video tag (i.e. mp4, webm)

Post a Comment for "How To Play A Flv Video In Html5"