Results 1 to 3 of 3

Thread: YouTube Converter?

  1. #1

  2. #2
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: YouTube Converter?

    there are in fact a couple of threads about this already. It was determined that doing this is against youtube's terms of service, and no one of the forum is allowed to help because of that.
    http://www.vbforums.com/showthread.p...wnload+youtube
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  3. #3
    Frenzied Member stateofidleness's Avatar
    Join Date
    Jan 2009
    Posts
    1,780

    Re: YouTube Converter?

    stripping certain text from a URL isn't against any TOS, so in order to do that, use:
    vb Code:
    1. Dim myURL As String = "http://www.youtube.com/watch?v=TOH-TBxC8DU"
    2. MsgBox(myURL.Substring(myURL.IndexOf("=") + 1, myURL.Length - myURL.IndexOf("=") - 1))

    That will strip the video's ID from the URL. What you do with it from there is up to you (which might be against the TOS)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width