Hi, i want to know how can i take a video from website if the website not allow embed for example how to take this video from youtube if youtube not allow embed Hope you understand me correctly Thanks
If youtube wont allow embed, then you shouldnt embed But, I dont understand when you say Google? Is it YouTube of Google you mean? The screen is from youtube
It is a n easy task, use HTML EMBEDDED URL by the site address bar and paste it where you want to add the link of video.
for example look to this website how to embed the channel to HTML Page some friends was tell me to use marging and padding to take the part of video , but i need further explanation Thanks
you wont be able to embed that site cause it breaks iframes, if you wan it you will have to download and reupload somewhere.
For downloading videos from YouTube, use www.keepvid.com and for downloading videos from any other site, use Internet Download Manager. It allows you to download any video from any website.
If you embed a non-embeddable video from youtube it'll give you an error, but you can try it anyway. All youtube videos are embeded the same way: <iframe width="560" height="345" src="http://www.youtube.com/embed/[TheVideoID]" frameborder="0" allowfullscreen></iframe> Code (markup): Where [TheVideoID] is.. the video ID! For example, in this url: hxxp://www.youtube.com/watch?v=1S35THmZD_E The VideoID is 1S35THmZD_E - it's the code after watch?v=. So your embed code would be: <iframe width="560" height="345" src="http://www.youtube.com/embed/1S35THmZD_E" frameborder="0" allowfullscreen></iframe> Code (markup): Some URLs have some more data in them though, like this one: hxxp://www.youtube.com/watch?v=1S35THmZD_E&feature=related But you apply the same rule - it's still the code after watch?v= but it's before any other GET variables (&something=somethingelse) so the code is still the same as above (it's the same video, different URL structure). Easy