Home / Other / FAQ solutions database / Internet & Network / How to download Youtube Videos
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] 2 3 4  All - (Bottom) Print
Author Topic: How to download Youtube Videos  (Read 23817 times)
Helpmeh
Topic Starter
Egghead



Thanked: 117
Posts: 3,608

Experience: Experienced
OS: Windows XP


Roar.

1
« on: April 26, 2009, 10:17:14 AM »

I've been looking for a solution to download YouTube videos forever, and Google doesn't help. But now I have one, and you do too! (And you don't need to download anything except the movie you want! ;D :o 8))

Most sites (about 99%) that say that they can download youtube videos, but they can't because of a hosting change.

In 10 parts, you can get youtube videos, and it usually takes less than 5 minutes.

1. Go to the video you want to download.
2. Make sure the URL is in this format: http://www.youtube.com/watch?v=5BCVLRPQUnY and copy it.
3. Go to http://www.youtubecatcher.com/
4. Paste the URL into the text area, and press the Download Video Button
5. Right click on the link that says "Right-Click Here to Download Your Video (FLV format)" and select Save Link As (or Save Target As) save it to your desktop.
6. Go to http://media-convert.com/
7. Click the FIRST browse button. Select the .flv video you just downloaded.
8. Make sure the output format is "Windows Media Video (.wmv)"
9. Click OK
10. Wait for it to upload and convert, then you are done. A fully playable YouTube video on your computer!


If you're wondering why you need to convert it to a .wmv, try playing it as a .flv and see for yourself. It won't play. It will just show a blank screen, and if you right click your mouse, it will say Movie not loaded.
« Last Edit: April 26, 2009, 03:19:04 PM by Helpmeh » IP logged

Where's MagicSpeed?
Quote from: 'matt'
He's playing a game called IRL. Great graphics, *censored* gameplay.
gh0std0g74
Apprentice



Thanked: 37
Posts: 590


« Reply #1 on: April 27, 2009, 09:51:33 AM »

A simple script can be used to download youtube. eg Python script
Code: [Select]
import urllib
import os
import sys
url = sys.argv[1]
page=urllib.urlopen(url)
result = page.read()
#result=open("test.html").read()
startindex = result.index("var swfArgs")
result = result[startindex:]
endindex=result.index("};")
result=result[:endindex]
result =  result.split(",")
get={}

def download(url,output):
    """Copy the contents of a file from a given URL to a local file."""   
    webFile = urllib.urlretrieve(url,output+".flv")

for line in result:
    if "video_id" in line or "\"t\"" in line :
        v,vnum = line.replace("\"","").split(":")
        get[v.strip()]=vnum.strip()
   
dload = "http://www.youtube.com/get_video?video_id=%s&t=%s" % ( get['video_id'],get['t'])

try :
    download(dload,get['video_id'])
except Exception,e:
    print "Error: ",e

to execute:
Code: [Select]
c:\test> python youtube.py "http://www.youtube.com/watch?v=5BCVLRPQUnY"

similarly, it can be done using Perl/Ruby/Java etc, or even wget for windows.
IP logged

squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #2 on: April 27, 2009, 10:27:57 AM »

WE have already mentioned that here.  Not sure were it is but we can put the url here keepvideo and then enter a title and it saves it in a flv format.
IP logged

Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres
Archer
Beginner



Thanked: 11
Posts: 90

Computer: Specs
Experience: Familiar
OS: Windows 7



1
« Reply #3 on: April 27, 2009, 10:35:30 AM »

      Hmmm... had any of You tried 'Download Master'?
IP logged

良し! いこう! いこぜ みんな!
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #4 on: April 27, 2009, 11:13:09 AM »

Never heard of it.
IP logged

Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres
Archer
Beginner



Thanked: 11
Posts: 90

Computer: Specs
Experience: Familiar
OS: Windows 7



1
« Reply #5 on: April 27, 2009, 11:50:29 AM »

   Too bad... It can download YouTube videos much easier...
IP logged

良し! いこう! いこぜ みんな!
x2543
Guest
« Reply #6 on: April 27, 2009, 12:13:57 PM »

or ....

http://www.downloadyoutubevideos.com/

That saves youtube videos, just gotta remember to save as with .flv extension.
IP logged
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #7 on: April 27, 2009, 01:00:31 PM »

I like useing realplaer cause less hastle.
IP logged

Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres
Helpmeh
Topic Starter
Egghead



Thanked: 117
Posts: 3,608

Experience: Experienced
OS: Windows XP


Roar.

1
« Reply #8 on: April 28, 2009, 05:45:17 PM »

A simple script can be used to download youtube. eg Python script
Code: [Select]
import urllib
import os
import sys
url = sys.argv[1]
page=urllib.urlopen(url)
result = page.read()
#result=open("test.html").read()
startindex = result.index("var swfArgs")
result = result[startindex:]
endindex=result.index("};")
result=result[:endindex]
result =  result.split(",")
get={}

def download(url,output):
    """Copy the contents of a file from a given URL to a local file."""   
    webFile = urllib.urlretrieve(url,output+".flv")

for line in result:
    if "video_id" in line or "\"t\"" in line :
        v,vnum = line.replace("\"","").split(":")
        get[v.strip()]=vnum.strip()
   
dload = "http://www.youtube.com/get_video?video_id=%s&t=%s" % ( get['video_id'],get['t'])

try :
    download(dload,get['video_id'])
except Exception,e:
    print "Error: ",e

to execute:
Code: [Select]
c:\test> python youtube.py "http://www.youtube.com/watch?v=5BCVLRPQUnY"

similarly, it can be done using Perl/Ruby/Java etc, or even wget for windows.
Most youtube downloading websites use the www.youtube.com/get_video (which doesn't work anymore), which is why I posted a 100% working version.
IP logged

Where's MagicSpeed?
Quote from: 'matt'
He's playing a game called IRL. Great graphics, *censored* gameplay.
JJ 3000
Egghead



Thanked: 227
Posts: 3,459

Experience: Familiar
OS: Linux variant



« Reply #9 on: April 29, 2009, 02:13:05 AM »

http://www.computerhope.com/issues/ch001002.htm
IP logged

Save a Life!
Adopt a homeless pet.
http://www.petfinder.com/
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #10 on: April 29, 2009, 07:46:03 AM »

That was it.  ;)
IP logged

Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres
macdad-
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #11 on: April 29, 2009, 11:43:26 AM »

KeepVid.com  ;)

Use it myself, haven't gotten any viruses and crap from it.

You can download a High(MP4 file) or a Low(Flash Video) quality video. 
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #12 on: April 29, 2009, 12:15:24 PM »

neither have i.  Except that you have to change the filename at times.
IP logged

Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres
Helpmeh
Topic Starter
Egghead



Thanked: 117
Posts: 3,608

Experience: Experienced
OS: Windows XP


Roar.

1
« Reply #13 on: April 29, 2009, 04:31:56 PM »

http://www.computerhope.com/issues/ch001002.htm

Keepvid: Works
Videospider: No
Youtubex: No
Videodownloaded: No
IP logged

Where's MagicSpeed?
Quote from: 'matt'
He's playing a game called IRL. Great graphics, *censored* gameplay.
x2543
Guest
« Reply #14 on: April 29, 2009, 06:26:01 PM »

VideoGet --> A $19.95 software that downloads youtube videos and can convert to various file types if you specify. It works well, I haven't had a problem with it. I got it free on giveawayoftheday.com when it was there, I still have the install and license key for the program if anybody wants it still.  :)
IP logged
Pages: [1] 2 3 4  All - (Top) Print 
Home / Other / FAQ solutions database / Internet & Network / How to download Youtube Videos « previous next »
 


Login with username, password and session length

Old Forum Search | Forum Rules
Copyright © 2010 Computer Hope ® All rights reserved.
Powered by SMF 2.0 RC3 | SMF © 2006–2010, Simple Machines LLC
Page created in 0.095 seconds with 21 queries.