Click here to Skip to main content
15,923,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<a href="">hi for all
im for web site Requirements in code video player

how can free codes procure.

thanks</a>
Posted
Comments
Sandeep Mewara 23-Jan-11 3:30am    
Your question is not at all clear. Please re-phrase.

If you want to play wmvs in IE only you can embed Windows media player. Otherwise, your best bet is a flash based player. Your question is poorly worded, so I am guessing that English is not your first language and you've had trouble forming a google query that gets what you want. This[^] has some promising links. Any player you find will come with a tutorial on how to embed it. I typically set the flash vars that specify the file to play with a code behind property embedded in the aspx.
 
Share this answer
 
Hi
Try out the embed tag

<embed src="yourvideo.avi" />

In HTML5 there is a video tag

XML
<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/AAA" />
  <source src="movie.mp4" type="video/mp3" />
  <source src="movie.webm" type="video/CCC" />
Your browser does not support the video tag.
</video>


http://www.w3schools.com/html5/tryit.asp?filename=tryhtml5_video_all[^]

Hope this helps
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900