Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Other Community Discussions > Tutorials & Tips
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Tutorials & Tips
The place to find Ubuntu related Tips & Tricks.

 
Thread Tools Display Modes
Old September 10th, 2007   #1
FRuMMaGe
Ubuntu Extra Shot
 
FRuMMaGe's Avatar
 
Join Date: Mar 2007
Beans: 351
Send a message via MSN to FRuMMaGe Send a message via Skype™ to FRuMMaGe
HowTo: Download YouTube videos (the easy way)

Many people have been asking how to download youtube videos, and kept being pointed to useless software which will do it for them.

Here is the easy way:

Step 1: Find the video you want to download and wait for it to completely finish loading.

Step 2: Minimize your browser (do NOT close it, some browsers delete the temp directory upon closing), and navigate to the directory /tmp

Step 3: Drag the flash file onto your desktop. Voila!

This definitely works with firefox, and probably most other browsers aswell. Enjoy!
FRuMMaGe is offline   Reply With Quote
Old September 13th, 2007   #2
sad_iq
Quad Shot of Ubuntu
 
Join Date: Sep 2006
Location: Spain
Beans: 404
Kubuntu 7.04 Feisty Fawn
Re: HowTo: Download YouTube videos (the easy way)

Here is a simple way also: Find the video you want to download...let's say this one here:http://youtube.com/watch?v=2BCoZiSbGtY
You don't need to watch it or anything...then in the address bar on top of ANY browser put kiss in front of the youtube...so the address will be http://kissyoutube.com/watch?v=2BCoZiSbGtY
That will take you to a page that will give you the preview of the video(like youtube) and a lot of links ...and one of them is Download Now (guess what it does )
sad_iq is offline   Reply With Quote
Old September 13th, 2007   #3
Belinrahs
First Cup of Ubuntu
 
Belinrahs's Avatar
 
Join Date: Sep 2007
Beans: 12
Re: HowTo: Download YouTube videos (the easy way)

There are also a few services I've seen floating around, web-based, that grab the YouTube FLA file, and convert it to MPEG-4.

Google it..
Belinrahs is offline   Reply With Quote
Old September 13th, 2007   #4
bashologist
Way Too Much Ubuntu
 
bashologist's Avatar
 
Join Date: Mar 2007
Location: Your Closet
Beans: 308
Ubuntu 7.10 Gutsy Gibbon
Send a message via AIM to bashologist
Re: HowTo: Download YouTube videos (the easy way)

Cool, that's really neat, didn't know that.

Check out this nice bash script.
Code:
#!/bin/bash
flash=$(ls -t /tmp/Flash* | head -n 1)
destination=$(find ~/.mozilla -name sessionstore.js -exec sed 's/.*title:"\([^"]*\).*selected.*/\1/' {} \;)
echo "waiting for download to finish ..."
size=$(du $flash)
while sleep 5s; do
	if [ "$size" != "$(du $flash)" ]; then
		size=$(du $flash)
		continue
	else
		break
	fi
done
cp "$flash" "$HOME/${destination////%2f}.swf"
Load a YouTube web page, wait a few seconds, run it, then look in your home directory. n_n
__________________
"How about we kill them, and then rape their bodies
so we can use their blood as lubricant!"
-- Beary

Last edited by bashologist; September 13th, 2007 at 04:11 PM..
bashologist is offline   Reply With Quote
Old September 13th, 2007   #5
capink
Way Too Much Ubuntu
 
capink's Avatar
 
Join Date: Nov 2006
Location: Cairo, Egypt
Beans: 292
Re: HowTo: Download YouTube videos (the easy way)

Another approach is to install firefox extension unplug. This extension will give you download link to the youtube videos.
capink is offline   Reply With Quote
Old September 13th, 2007   #6
FRuMMaGe
Ubuntu Extra Shot
 
FRuMMaGe's Avatar
 
Join Date: Mar 2007
Beans: 351
Send a message via MSN to FRuMMaGe Send a message via Skype™ to FRuMMaGe
Re: HowTo: Download YouTube videos (the easy way)

Quote:
Originally Posted by Belinrahs View Post
There are also a few services I've seen floating around, web-based, that grab the YouTube FLA file, and convert it to MPEG-4.

Google it..
These usuall take ages though.

I'm assuming people can convert the videos themselves if they see it necessary.

Personally, I use WinFF to convert all my videos. You can also use to it convert to iPod format
FRuMMaGe is offline   Reply With Quote
Old September 14th, 2007   #7
qpieus
Quad Shot of Ubuntu
 
qpieus's Avatar
 
Join Date: Apr 2006
Location: Green Bay, WI, USA
Beans: 399
Kubuntu 8.04 Hardy Heron
Re: HowTo: Download YouTube videos (the easy way)

Quote:
Originally Posted by bashologist View Post
Cool, that's really neat, didn't know that.

Check out this nice bash script.
Code:
#!/bin/bash
flash=$(ls -t /tmp/Flash* | head -n 1)
destination=$(find ~/.mozilla -name sessionstore.js -exec sed 's/.*title:"\([^"]*\).*selected.*/\1/' {} \;)
echo "waiting for download to finish ..."
size=$(du $flash)
while sleep 5s; do
	if [ "$size" != "$(du $flash)" ]; then
		size=$(du $flash)
		continue
	else
		break
	fi
done
cp "$flash" "$HOME/${destination////%2f}.swf"
Load a YouTube web page, wait a few seconds, run it, then look in your home directory. n_n
That's brilliant, thanks. I've been wanting to save a few youtube videos and this worked perfectly.
__________________
A computer without Microsoft is like a chocolate cake without mustard.
qpieus is offline   Reply With Quote
Old September 14th, 2007   #8
Kopfgeldjaeger
5 Cups of Ubuntu
 
Join Date: Dec 2006
Beans: 21
Re: HowTo: Download YouTube videos (the easy way)

Have a look at http://code.google.com/p/vdown/ , too, it has a little GTK-GUI and downloads from many video portals (all supported by videograb.de), it saves the files with the original name of the video. You can also download video lists with it.

greetings
Kopfgeldjaeger is offline   Reply With Quote
Old September 15th, 2007   #9
metroplex
5 Cups of Ubuntu
 
metroplex's Avatar
 
Join Date: Oct 2006
Location: Sweden
Beans: 12
Ubuntu 7.04 Feisty Fawn
Re: HowTo: Download YouTube videos (the easy way)

I'd suggest installing the package "youtube-dl" available from the unverse repo. From a terminal:

sudo apt-get install youtube-dl

Using the download-script is easy. Start a terminal, and type:

youtube-dl <link to youtube video>
metroplex is offline   Reply With Quote
Old September 15th, 2007   #10
Steve1961
Grande Half-n-Half Cinnamon Ubuntu
 
Steve1961's Avatar
 
Join Date: Jul 2005
Location: /dev/UK
Beans: 998
Ubuntu 9.04 Jaunty Jackalope
Re: HowTo: Download YouTube videos (the easy way)

There's also a firefox extension called download helper:

https://addons.mozilla.org/en-US/firefox/addon/3006
__________________
Desktop: Dell Studio 540, Ubuntu Jaunty
Laptop1: Asus eeepc 1000H, Ubuntu Hardy, Windows XP.
Laptop2: IBM Thinkpad R50e, Ubuntu Jaunty.
Steve1961 is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:57 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry