I have the video url, i try to play that video , but it is not playing, it is downloaded. How to play the video
<div> For help <a href="https://xxx/xxx.avi" target="_blank">Watch this video</a></div>
You can't embed video in an anchor tag, you have to use the html5 tag.
<video width="320" height="240" controls>
<source src="https://xxx/xxx.mp4" type="video/mp4">
<source src="https://xxx/xxx.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
You can find more info in http://www.w3.org/wiki/HTML/Elements/video
Hope it helps.