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 22013 times)
Helpmeh
Topic Starter
Egghead



Thanked: 116
Posts: 3,583

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: 116
Posts: 3,583

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: 225
Posts: 3,392

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: 116
Posts: 3,583

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
Helpmeh
Topic Starter
Egghead



Thanked: 116
Posts: 3,583

Experience: Experienced
OS: Windows XP


Roar.

1
« Reply #15 on: April 29, 2009, 08:38:03 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.  :)
Just noting that my solution is 100% free. No installation. No downloading (other than the movies you want).
IP logged

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

but of course, videoget comes with the conversion options to convert to other formats. Something that keepvid doesn't do  :)
IP logged
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #17 on: April 30, 2009, 05:47:52 AM »

we mentioned that too and its free.
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
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #18 on: May 01, 2009, 02:04:04 AM »

Firefox Add-on: Video DownloadHelper.

Method: Use it to download the .flv file from youtube (or any other website) and use Quick Media Converter to convert the FLV file to another format (WMV, AVI, ect).

Otherwise, use VLC Media Player to play FLV file.
IP logged

Helpmeh
Topic Starter
Egghead



Thanked: 116
Posts: 3,583

Experience: Experienced
OS: Windows XP


Roar.

1
« Reply #19 on: May 02, 2009, 04:49:31 PM »

Firefox Add-on: Video DownloadHelper.

Method: Use it to download the .flv file from youtube (or any other website) and use Quick Media Converter to convert the FLV file to another format (WMV, AVI, ect).

Otherwise, use VLC Media Player to play FLV file.
I would just like to mention that not everyone uses firefox...And is that addon the one with the 3 spheres that spin around? It doesn't work for me...
IP logged

Where's MagicSpeed?
Quote from: 'matt'
He's playing a game called IRL. Great graphics, *censored* gameplay.
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #20 on: May 02, 2009, 06:26:01 PM »

A lot of people who are experienced enough to want to download youtube videos would probably be using Firefox.
BTW, the icon can be removed.
IP logged

x2543
Guest
« Reply #21 on: May 02, 2009, 06:31:10 PM »

A lot of people who are experienced enough to want to download youtube videos would probably be using Firefox.
BTW, the icon can be removed.


But still internet explorer still has the greatest number of users among web browsers .... anyway....


http://downloadyoutubevideo.org/

You can also download youtube videos via this website I listed above. It works, I just tested it out right now. And the websites can work for most of the websites, not restricted to only internet explorer. What if you're at work, and you find a useful youtube video but the IT techs have locked  your PC to internet explorer as the browser so you have to use it?
IP logged
BC_Programmer
Mastermind


Thanked: 682
Posts: 15,624

Computer: Specs
Experience: Beginner
OS: Windows 7


Pinkie Pie is best pony

BC-Programming.com 1 1
« Reply #22 on: May 02, 2009, 06:52:23 PM »

Quote
IT techs have locked  your PC to internet explorer as the browser so you have to use it?

The best solution would be to realize that downloading youtube video's isn't what your paid to do. Although they cannot "lock" the computer to IE. firefox can be installed on a flash drive.
IP logged

x2543
Guest
« Reply #23 on: May 02, 2009, 07:11:17 PM »

of course portable firefox is there ....  :)
IP logged
Helpmeh
Topic Starter
Egghead



Thanked: 116
Posts: 3,583

Experience: Experienced
OS: Windows XP


Roar.

1
« Reply #24 on: May 02, 2009, 08:21:55 PM »

What if you're at work, and you find a useful youtube video but the IT techs have locked  your PC to internet explorer as the browser so you have to use it?

Then you can use the solution I gave, because the .flv s (when you don't have VLC or anything else downloaded) don't load properly, so you convert them to .wmv
IP logged

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



Thanked: 63
Posts: 3,393

Experience: Experienced
OS: Windows XP

1
« Reply #25 on: May 02, 2009, 09:14:42 PM »

OR you can get a greasemonkey script
IP logged

Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #26 on: May 02, 2009, 09:31:31 PM »

OR you can get a greasemonkey script

Which is only for Firefox.
IP logged

squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #27 on: May 03, 2009, 05:56:54 AM »

do what I had suggested.
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
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #28 on: May 03, 2009, 06:00:11 AM »

Your suggestion was very vague, Squall. And besides, I thought we were suggesting ways to download Youtube videos, not to force people who read this FAQ to follow your method.

Remember, this topic is in the FAQ board. We are providing different means to get Youtube videos saved on your computer.
Hopefully people come to this topic instead of the hundreds of other different methods which are top results in Google.

In reality, your comment was directed to no one, Squall.
IP logged

squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #29 on: May 03, 2009, 06:05:56 AM »

It was tooo.... didnt know that it was posted here.  But, at any rate I gave what we suggested and is know to work.
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
kaigan
Beginner



Posts: 83


« Reply #30 on: July 03, 2009, 07:50:02 AM »

i suggest going to http://youtubedownload.altervista.org/
its freeware and fully safe...and it also has an in-built option to convert the downloaded flv file to most popular video formats! i've been using it for a long time and have no problems with it at all. :)
IP logged

squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #31 on: July 03, 2009, 09:23:16 AM »

Dont recall if I mentioned this but if you have like realplayer 12 installed it can download video's from several places includeing there.
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
computeruler
Egghead



Thanked: 63
Posts: 3,393

Experience: Experienced
OS: Windows XP

1
« Reply #32 on: July 03, 2009, 10:38:51 AM »

Ya you can but I would not recommend installing real player.  Absolute crap software.  Im not even sure if its even software
IP logged

Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #33 on: July 03, 2009, 12:50:35 PM »

VLC ftw!

Can you guys not see this is a 2-month old topic. -_-

Let it rest.
IP logged

squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #34 on: July 03, 2009, 12:56:48 PM »

yes just felt like that was good to mention before we let it go finally. 
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
kpac
Web moderator
Hacker



Thanked: 179
Posts: 5,828

Certifications: List
Computer: Specs
Experience: Expert
OS: Windows 7
kpac®

1 1 1
« Reply #35 on: July 08, 2009, 09:52:02 AM »

Can you guys not see this is a 2-month old topic. -_-

Let it rest.

Sorry, one more. ;D

Quote
Just noting that my solution is 100% free. No installation. No downloading (other than the movies you want).
Same here: http://www.pwnyoutube.com/

Much easier in fact.
IP logged

manadude2
Intermediate



Thanked: 4
Posts: 128


Mix 'n Match Forums
« Reply #36 on: July 08, 2009, 06:16:24 PM »

VLC ftw!

Can you guys not see this is a 2-month old topic. -_-

Let it rest.

So? Can a thread not be contributed to even if it is over 2 months old? If Admin didn't want anyone to post here, he would have locked it.

Oh and er... Youtube Downloader is another good one.
IP logged

Something went wrong here...
Ädamas
Beginner



Thanked: 1
Posts: 64




« Reply #37 on: August 02, 2009, 04:26:41 AM »

you can use this script
Quote
javascript:if(document.location.href.match(/http:\/\/[a-zA-Z\.]*youtube\.com\/watch/)){document.location.href='http://www.youtube.com/get_video?fmt='+(isHDAvailable?'22':'18')+'&video_id='+swfArgs['video_id']+'&t='+swfArgs['t']}
just save it as a bookmark and click on it when on the youtube site

<mod edit: Code changed to Quote to prevent page stretching>
« Last Edit: August 02, 2009, 08:41:49 AM by Carbon Dudeoxide » IP logged

you're just jealous because the voices talk to me, and not you.
squall_01
Prodigy



Thanked: 78
Posts: 6,210


« Reply #38 on: August 02, 2009, 08:07:57 AM »

VLC ftw!

Can you guys not see this is a 2-month old topic. -_-

Let it rest.


 ;)

« Last Edit: August 05, 2009, 01:41:38 AM by squall_01 » 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
Mulreay
Guest
« Reply #39 on: August 04, 2009, 10:31:27 AM »

I've been using this
http://www.dvdvideosoft.com/free-dvd-video-software.htm

for quite some time. Really easy to use with no messing about. All you have to do is open the programme go onto youtube and copy the URL link it automatically pastes to the downloader and you just click download. Bingo jobs a gooden!
IP logged
2x3i5x
Expert



Thanked: 116
Posts: 2,128

Computer: Specs
Experience: Familiar
OS: Windows Vista

« Reply #40 on: August 04, 2009, 11:15:10 AM »

for firefox users, just get flashgot addon and then get the flashget download manager


Flashgot conveniently integrates flashget into your browser so you can use it only when you feel like it and the flashgot "FlashGot Media" command grabs video and audio clips while they're playing (I've tested on youtube and few other similar video websites and it hasn't yet failed me)
« Last Edit: August 07, 2009, 01:47:21 PM by 2x3i5x » IP logged
Mulreay
Guest
« Reply #41 on: July 13, 2010, 05:37:48 PM »

Or use on Firefox 'downloadhelper'
IP logged
freeforall
*Bugmenot user*
Beginner



Posts: 58

Computer: Specs
Experience: Familiar
OS: Windows 7

« Reply #42 on: January 26, 2011, 10:49:51 AM »

To download Any Videos from YouTube.com simply use freeware program "YouTube Downloader"
Click here to download: YouTubeDownloaderSetup265.exe File_size: 4.35 MB
IP logged
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 145
Posts: 16,077

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #43 on: February 03, 2011, 02:40:41 AM »

Seeing as this topic keeps getting additions, I shall provide my own input.

Firefox Users
Download and install this add-on Video Downloadhelper:
https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/
Once installed, you can download almost all media from a webpage.
With this add-on, you can navigate to a Youtube page and download the video in various formats and resolutions.

Other Browsers
A service I have been using recently: http://www.flvto.com/
Copy the Youtube link and it would convert it online and allow you to download the result.
IP logged

elina
Newbie



Posts: 1

Experience: Beginner
OS: Unknown

« Reply #44 on: April 07, 2011, 09:05:17 PM »

I didn't heard of it, but I heard some people that YouTube Downloader Suite is great, how about it?
IP logged
SarahVids
Newbie



Posts: 1

Experience: Beginner
OS: Unknown

« Reply #45 on: August 26, 2011, 12:11:34 PM »

i suggest going to http://youtubedownload.altervista.org/
its freeware and fully safe...and it also has an in-built option to convert the downloaded flv file to most popular video formats! i've been using it for a long time and have no problems with it at all. :)

Thanks for the shout, Kaigan. My name is Sarah and I actually work with YouTube Downloader.


I just wanted to let you know that YouTube Downloader is in the process of transitioning to its own domain,  The new site will have a very helpful how-to video, and also now includes information about converting to a number of popular devices (ipod, iphone) as well as popular formats (mp3, avi).

We will eventually be closing down youtubedownloader.altervista.org, but not for some time. 

Best Regards,
Sarah
« Last Edit: August 26, 2011, 01:21:52 PM by Fed » IP logged
Salmon Trout
Prodigy



Thanked: 501
Posts: 7,365

Computer: Specs
Experience: Guru
OS: Linux variant

1
« Reply #46 on: August 26, 2011, 12:52:59 PM »

Also there is the free DownloadHelper addon for Firefox which can download from Youtube and many other sites.

http://www.downloadhelper.net/

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.144 seconds with 21 queries.