Dear All
Is there some tool for downloading video/audio files from YouTube?
Thanks in advance,
Paul
I've read somewhere that there's a firefox extension.
On 2/3/07, Paul Smith phhs80@gmail.com wrote:
Dear All
Is there some tool for downloading video/audio files from YouTube?
Thanks in advance,
Paul
-- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Hi,
On Saturday 03 February 2007 2:50:05 pm Paul Smith wrote:
Is there some tool for downloading video/audio files from YouTube?
There are such tools for KDE/Konqueror, do a search on kde.apps for "tube" and for Firefox MediaPlayerConnectivity plugin may do this:
http://membres.lycos.fr/sethnakht/
HTH
Colin
On 2/3/07, Colin J Thomson - G6AVK colin@g6avk.demon.co.uk wrote:
Is there some tool for downloading video/audio files from YouTube?
There are such tools for KDE/Konqueror, do a search on kde.apps for "tube" and for Firefox MediaPlayerConnectivity plugin may do this:
Thanks to both. In fact, there is a bunch of Firefox extensions to do that.
Paul
Paul Smith wrote:
Dear All
Is there some tool for downloading video/audio files from YouTube?
Thanks in advance,
Paul
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
HTH
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
Is there some tool for downloading video/audio files from YouTube?
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
Paul
on 02/03/2007 01:39 PM Paul Smith wrote:
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
Is there some tool for downloading video/audio files from YouTube?
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
giving much better result, probably because there is no rescaling...
On Sat, 2007-02-03 at 14:48 -0500, oleksandr korneta wrote:
on 02/03/2007 01:39 PM Paul Smith wrote:
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
Is there some tool for downloading video/audio files from YouTube?
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Anyone seen this one? Ric
On Mon, February 5, 2007 09:39, Ric Moore wrote:
On Sat, 2007-02-03 at 14:48 -0500, oleksandr korneta wrote:
on 02/03/2007 01:39 PM Paul Smith wrote:
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
Is there some tool for downloading video/audio files from YouTube?
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Anyone seen this one? Ric
Yep, you have to install ffmpeg-devel package
Manuel.
On Mon, 2007-02-05 at 09:50 +0100, Manuel Arostegui wrote:
On Mon, February 5, 2007 09:39, Ric Moore wrote:
On Sat, 2007-02-03 at 14:48 -0500, oleksandr korneta wrote:
on 02/03/2007 01:39 PM Paul Smith wrote:
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
Is there some tool for downloading video/audio files from YouTube?
For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Anyone seen this one? Ric
Yep, you have to install ffmpeg-devel package
Yum ain't finding it and I tried livna, atrpms and freshrpms <boggles> got any ideas? Ric
On 2/5/07, Ric Moore wayward4now@gmail.com wrote:
> Is there some tool for downloading video/audio files from YouTube? > > For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Anyone seen this one? Ric
Yep, you have to install ffmpeg-devel package
Yum ain't finding it and I tried livna, atrpms and freshrpms <boggles> got any ideas? Ric
Surprising, as:
$ rpm -qi ffmpeg-devel Name : ffmpeg-devel Relocations: (not relocatable) Version : 0.4.9 Vendor: ATrpms.net Release : 19_r7407.fc6.at Build Date: Wed 03 Jan 2007 09:19:09 PM WET Install Date: Thu 04 Jan 2007 12:10:46 PM WET Build Host: junior.physik.fu-berlin.de Group : Development/Libraries Source RPM: ffmpeg-0.4.9-19_r7407.fc6.at.src.rpm Size : 6090752 License: GPL Signature : DSA/SHA1, Wed 03 Jan 2007 09:19:32 PM WET, Key ID 508ce5e666534c2b Packager : ATrpms http://ATrpms.net/ URL : http://ffmpeg.sourceforge.net/ Summary : Development files for building against the ffmpeg package Description : This package provides the files neccessary for development against ffmpeg. Use this package if you need to build a package depending on ffmpeg at build time, or if you want to do your own development against ffmpeg. $
Paul
On February 5, 2007, Paul Smith wrote:
On 2/5/07, Ric Moore wayward4now@gmail.com wrote:
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Odd. I have both
/usr/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51.30.0
but don't have ffmpeg-devel installed
rpm -q ffmpeg-devel package ffmpeg-devel is not installed
On Mon, February 5, 2007 10:31, Ric Moore wrote:
On Mon, 2007-02-05 at 09:50 +0100, Manuel Arostegui wrote:
On Mon, February 5, 2007 09:39, Ric Moore wrote:
On Sat, 2007-02-03 at 14:48 -0500, oleksandr korneta wrote:
on 02/03/2007 01:39 PM Paul Smith wrote:
On 2/3/07, Alexandru Ciobanu alex@tvtransilvania.ro wrote:
> Is there some tool for downloading video/audio files from YouTube? > > > For a single file you can use this sh script:
#!/bin/bash bu="http://youtube.com/get_video.php?"; read -p "URL to YouTube video? " ur; read -p "Name of file to be saved? " nv wget ${ur} -O /var/tmp/y1;uf=${bu}`grep player2.swf /var/tmp/y1 | cut -d? -f2 | cut -d" -f1`; wget "${uf}" -O /var/tmp/y.flv ffmpeg -i /var/tmp/y.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 ${nv}.mpg; rm /var/tmp/y.flv; rm /var/tmp/y1; exit
You need ffmpeg, of course. For multiple files you can loop this or something...
Thanks to all. The command
ffmpeg -i get_video.flv -r 24 -ab 56 -ar 22050 -b 500 -s 320x240 out.avi
works fine.
I remember using something similar, but the resulting video looks much crappier than the original .flv
I found
ffmpeg -i input.flv -ar 48000 -ac 2 output.mpg
Crap. I get this error which isn't found with google. ffmpeg: symbol lookup error: /usr/lib/libavcodec.so.51: undefined symbol: NeAACDecOpen
Anyone seen this one? Ric
Yep, you have to install ffmpeg-devel package
Yum ain't finding it and I tried livna, atrpms and freshrpms <boggles> got any ideas? Ric
http://rpmfind.net/linux/rpm2html/search.php?query=ffmpeg-devel&submit=S......
By the way, I got no problem when building it from a tarball on my laptop. That´s what I have: [root@Arbusto Desktop]# ls | grep ffmpeg ffmpeg-export-2007-01-22 ffmpeg-export-snapshot.tar.bz2
Hope this helps. Manuel
On February 3, 2007, Paul Smith wrote:
Dear All
Is there some tool for downloading video/audio files from YouTube?
I just discovered one called democracy player. It kind of combines the p2p system with a media player/recorder function. Seems to work well, but my experience is limited to a single session.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Paul Smith wrote:
Dear All
Is there some tool for downloading video/audio files from YouTube?
Thanks in advance,
Paul
http://www.arrakis.es/~rggi3/youtube-dl/
hth
ciao, furlan
- --
Music: http://www.myspace.com/acidredux
Links: http://del.icio.us/furlan
Home: http://flprim.us/index.html
"A sense of humor, properly developed, is superior to any religion so far devised." - -- Tom Robbins