Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
plz tell me source code how to view video like youtube without downloading in asp.net......
Posted

1 solution

go to the video.

If it were youtube, then:

take url, for example: http://www.youtube.com/watch?v=LQwqogQ6Jmc

Since youtube has an embeding feature,

take away the watch?v= and replace it with: embed/

Them, put a ? at the end.

Then, use the embeding function. So, http://www.youtube.com/watch?v=LQwqogQ6Jmc

would turn into

<iframe width="640" height="360" src="http://www.youtube.com/embed/LQwqogQ6Jmc?feature=player_detailpage" frameborder="0" allowfullscreen></iframe>
 
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