How to take a video from website ?

Discussion in 'HTML & Website Design' started by chihab, Aug 24, 2011.

  1. #1
    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

    1.jpg

    Hope you understand me correctly

    Thanks
     
    Solved! View solution.
    Last edited: Aug 24, 2011
    chihab, Aug 24, 2011 IP
  2. gmonlinegames

    gmonlinegames Peon

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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
     
    gmonlinegames, Aug 24, 2011 IP
  3. risteard

    risteard Peon

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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.
     
    risteard, Aug 24, 2011 IP
  4. infogle

    infogle Prominent Member

    Messages:
    2,732
    Likes Received:
    128
    Best Answers:
    1
    Trophy Points:
    300
    #4
    Let me see the url first then i could comment that what needs to be done...
     
    infogle, Aug 24, 2011 IP
  5. chihab

    chihab Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    yes yes i mean youtube , thanks
     
    chihab, Aug 24, 2011 IP
  6. chihab

    chihab Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    mmm, how can you give me an example
     
    chihab, Aug 24, 2011 IP
  7. chihab

    chihab Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    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
     
    chihab, Aug 24, 2011 IP
  8. #8

    you wont be able to embed that site cause it breaks iframes, if you wan it you will have to download and reupload somewhere.
     
    ponpulla, Aug 24, 2011 IP
  9. chihab

    chihab Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    OK, thank you friend
     
    chihab, Aug 24, 2011 IP
  10. born_star16

    born_star16 Member

    Messages:
    297
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    36
    #10
    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.

    4-14-2010 3-29-07 AM.jpg
     
    born_star16, Aug 24, 2011 IP
  11. Howe

    Howe Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    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 :)
     
    Howe, Aug 25, 2011 IP