LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Software needed (https://www.linuxquestions.org/questions/linux-newbie-8/software-needed-4175436014/)

Arjun 11-07-2012 12:41 AM

Software needed
 
I want a way or a software to download youtube videos or any other videos online like Internet Download Manager in Windows.

How can i get it ?

Thanks

acid_kewpie 11-07-2012 01:59 AM

easiest way I found was just to use a website that extracts video online.

teckk 11-07-2012 07:26 AM

Quote:

I want a way or a software to download youtube videos
youtube-dl is probably in your repo.
http://rg3.github.com/youtube-dl/documentation.html

A shell script to stream to mplayer while downloading (modify as you like)
Code:

#!/bin/sh

echo "Enter URL"
while read URL
do
mplayer -cookies -cookies-file /tmp/cookies.txt $(youtube-dl -g --cookies /tmp/cookie.txt "$URL")
done

or after it downloads
Code:

youtube-dl -f 18 --get-url http://www.youtube.com/watch?v=abcd | xargs mplayer
http://www.commandlinefu.com/command.../sort-by-votes

Quote:

or any other videos online
Look at the source for the page and get the URl of the video file.
Also look at
http://www.google.com/search?q=rtmpdump
http://www.google.com/search?q=wget

craigevil 11-07-2012 09:22 AM

Firefox extensions
Flashgot
Downloadthemall
Download Flash and Video
Video DownloadHelper
Flash Video Downloader

There are similar extensions for Chrome/Chromium.

nobuntu 11-07-2012 08:00 PM

If you have Java installed and functioning correctly, you can use SaveVid.com or KeepVid.com.

Arjun 11-08-2012 01:17 AM

Quote:

Originally Posted by teckk (Post 4824089)
youtube-dl is probably in your repo.
http://rg3.github.com/youtube-dl/documentation.html

A shell script to stream to mplayer while downloading (modify as you like)
Code:

#!/bin/sh

echo "Enter URL"
while read URL
do
mplayer -cookies -cookies-file /tmp/cookies.txt $(youtube-dl -g --cookies /tmp/cookie.txt "$URL")
done

or after it downloads
Code:

youtube-dl -f 18 --get-url http://www.youtube.com/watch?v=abcd | xargs mplayer
http://www.commandlinefu.com/command.../sort-by-votes


Look at the source for the page and get the URl of the video file.
Also look at
http://www.google.com/search?q=rtmpdump
http://www.google.com/search?q=wget


Thanks teckk

Quote:

Originally Posted by craigevil (Post 4824176)
Firefox extensions
Flashgot
Downloadthemall
Download Flash and Video
Video DownloadHelper
Flash Video Downloader

There are similar extensions for Chrome/Chromium.

Thanks craigevil

I will try these methods

Quote:

Originally Posted by R3nCi (Post 4824633)
If you have Java installed and functioning correctly, you can use SaveVid.com or KeepVid.com.


I have tried these websites but an error occurred that java not installed.

Knightron 11-08-2012 03:26 AM

Quote:

Originally Posted by craigevil (Post 4824176)
Flash Video Downloader

I will second this extension. I use it and it has worked fabulously for me

414N 11-08-2012 03:55 AM

If you've got a Java runtime installed, you could also use JDownloader as a standalone tool.


All times are GMT -5. The time now is 02:23 AM.