<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Download and watch YouTube videos from Linux shell prompt</title> <atom:link href="http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html/feed" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html</link> <description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description> <lastBuildDate>Fri, 10 Feb 2012 20:37:43 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: phar0z</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-150648</link> <dc:creator>phar0z</dc:creator> <pubDate>Mon, 14 Sep 2009 20:24:46 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-150648</guid> <description>&lt;pre&gt;#!/bin/bash
# checking whether you have youtube-dl
if [ ! -x `which youtube-dl`  ];then
echo “Error! youtube-dl isn’t installed.”
exit 0
fi
#checking whether you have vbrfix
if [ ! -x `which vbrfix`  ];then
echo “Error! vbrfix isn’t installed.”
exit 0
fi
#download video(s)
for URL in $*; do
youtube-dl -t “$1&amp;fmt=18″
done
#process
for VIDEO in `ls *.flv`; do
OUTPUT=${VIDEO:0:${#VIDEO}-4}”.mp3″
ffmpeg -i $VIDEO -acodec copy $OUTPUT
#move video
mv $OUTPUT /home/$USER/music
vbrfix /home/$USER/music/$OUTPUT /home/$USER/music/$OUTPUT
rm -rf vbrfix.log vbrfix.tmp
#clean-up
rm -rf $VIDEO
done
echo “Done.”&lt;/pre&gt;</description> <content:encoded><![CDATA[<pre>#!/bin/bash
# checking whether you have youtube-dl
if [ ! -x `which youtube-dl`  ];then
echo “Error! youtube-dl isn’t installed.”
exit 0
fi
#checking whether you have vbrfix
if [ ! -x `which vbrfix`  ];then
echo “Error! vbrfix isn’t installed.”
exit 0
fi
#download video(s)
for URL in $*; do
youtube-dl -t “$1&amp;fmt=18″
done
#process
for VIDEO in `ls *.flv`; do
OUTPUT=${VIDEO:0:${#VIDEO}-4}”.mp3″
ffmpeg -i $VIDEO -acodec copy $OUTPUT
#move video
mv $OUTPUT /home/$USER/music
vbrfix /home/$USER/music/$OUTPUT /home/$USER/music/$OUTPUT
rm -rf vbrfix.log vbrfix.tmp
#clean-up
rm -rf $VIDEO
done
echo “Done.”</pre>]]></content:encoded> </item> <item><title>By: xijhing</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-150192</link> <dc:creator>xijhing</dc:creator> <pubDate>Tue, 18 Aug 2009 05:16:48 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-150192</guid> <description>usage: utube NAME youtubeurl
&lt;pre&gt;#!/bin/bash
if [ $# -ne 2 ]
then
echo “Usage : $0 ”
echo “e.g : $0 steve_jobs http://www.youtube.com/watch?v=D1R-jKKp3NA”
else
todnload=$(youtube-dl -g -b $2 &#124; xargs wget –spider 2&gt;&amp;1 &#124; grep Location: &#124; awk &#039;{print $2}&#039;)
#echo -e “Got the file…\n$todnload”
axel $todnload -q -o ~/$1.flv
echo “Download Completed…”
ffmpeg -i $1.flv -r 50 -ar 48000 -ab 196000 -b 300k -croptop 0 -cropbottom 0 -cropleft 0 -cropright 0 $1.mp4
echo &quot;Cleaning up...&quot;
rm ~/$1.flv
rm ~/videoplayback?ip*
echo &quot;Done! Enjoy watching $1&quot;
fi&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>usage: utube NAME youtubeurl</p><pre>#!/bin/bash
if [ $# -ne 2 ]
then
echo “Usage : $0 ”
echo “e.g : $0 steve_jobs <a href="http://www.youtube.com/watch?v=D1R-jKKp3NA”" rel="nofollow">http://www.youtube.com/watch?v=D1R-jKKp3NA”</a>
else
todnload=$(youtube-dl -g -b $2 | xargs wget –spider 2&gt;&amp;1 | grep Location: | awk '{print $2}')
#echo -e “Got the file…\n$todnload”
axel $todnload -q -o ~/$1.flv
echo “Download Completed…”
ffmpeg -i $1.flv -r 50 -ar 48000 -ab 196000 -b 300k -croptop 0 -cropbottom 0 -cropleft 0 -cropright 0 $1.mp4
echo "Cleaning up..."
rm ~/$1.flv
rm ~/videoplayback?ip*
echo "Done! Enjoy watching $1"
fi</pre>]]></content:encoded> </item> <item><title>By: Jim Bowe</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-146283</link> <dc:creator>Jim Bowe</dc:creator> <pubDate>Wed, 17 Dec 2008 13:36:50 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-146283</guid> <description>Good script to do this in bash here:
http://blog.johnlawrence.net/2008/12/youtube-download-shell-script/
Works with the latest YouTube versions. (As of December 2008)</description> <content:encoded><![CDATA[<p>Good script to do this in bash here:<br
/> <a
href="http://blog.johnlawrence.net/2008/12/youtube-download-shell-script/" rel="nofollow">http://blog.johnlawrence.net/2008/12/youtube-download-shell-script/</a></p><p>Works with the latest YouTube versions. (As of December 2008)</p> ]]></content:encoded> </item> <item><title>By: Webdesign</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-145731</link> <dc:creator>Webdesign</dc:creator> <pubDate>Wed, 26 Nov 2008 15:19:49 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-145731</guid> <description>Nice youtube script, thanks so much!
Mark</description> <content:encoded><![CDATA[<p>Nice youtube script, thanks so much!</p><p>Mark</p> ]]></content:encoded> </item> <item><title>By: macias</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-144346</link> <dc:creator>macias</dc:creator> <pubDate>Sun, 13 Jul 2008 19:19:53 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-144346</guid> <description>Wearetherock, MANY THANKS! Simplicity is what I like, great script.</description> <content:encoded><![CDATA[<p>Wearetherock, MANY THANKS! Simplicity is what I like, great script.</p> ]]></content:encoded> </item> <item><title>By: Rob</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143920</link> <dc:creator>Rob</dc:creator> <pubDate>Thu, 29 May 2008 21:47:14 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143920</guid> <description>There&#039;s now a software tool to allow linux users to download youtube videos to a preferred directory, in a variety of formats (mpeg, wmv, mp4, flv, avi), specifying the resolution... all in a GTK theme&#039;d graphical tool.
Check it here:
http://yourtubedownloader.awardspace.com/
Feedback most appreciated, via the forums or by email.</description> <content:encoded><![CDATA[<p>There&#8217;s now a software tool to allow linux users to download youtube videos to a preferred directory, in a variety of formats (mpeg, wmv, mp4, flv, avi), specifying the resolution&#8230; all in a GTK theme&#8217;d graphical tool.</p><p>Check it here:<br
/> <a
href="http://yourtubedownloader.awardspace.com/" rel="nofollow">http://yourtubedownloader.awardspace.com/</a></p><p>Feedback most appreciated, via the forums or by email.</p> ]]></content:encoded> </item> <item><title>By: clarjon1</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143827</link> <dc:creator>clarjon1</dc:creator> <pubDate>Tue, 20 May 2008 14:20:37 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143827</guid> <description>Hmm, anyone got a perl one liner for this job? ;)</description> <content:encoded><![CDATA[<p>Hmm, anyone got a perl one liner for this job? ;)</p> ]]></content:encoded> </item> <item><title>By: wearetherock</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143351</link> <dc:creator>wearetherock</dc:creator> <pubDate>Wed, 02 Apr 2008 06:05:46 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-143351</guid> <description>#!/bin/bash
### mr-paul
### paul@sci.ubu.ac.th
if [ &quot;$1&quot; = &quot;&quot; ]; then
echo -e &quot;\nUsage: getyoutube http://www.youtube.com/watch?v=UHvAXLBMWGI\n&quot;
else
url=$1
name=${url:(-11)} ### get the last 11 chars
#echo $name
fullscreenURL=$( wget -q -nv  $url -O - &#124; grep \&amp;video_id= )
echo $fullscreenURL
title=${fullscreenURL##*=} ### delete to last occurance of &#039;=&#039;
title=${title/\&#039;;/} ### replace &#039;; with nothing ${title:(-2)} or #{title#(-2)} do not work&#039; :(
echo $title
videoID=${fullscreenURL:54} ### cut first 53 chars
videoID=${videoID/\&#039;;/} ##
echo $videoID
wget -q -nv &quot;http://www.youtube.com/get_video?$videoID&quot; -O &quot;$title.flv&quot;
fi</description> <content:encoded><![CDATA[<p>#!/bin/bash</p><p>### mr-paul<br
/> ### <a
href="mailto:paul@sci.ubu.ac.th">paul@sci.ubu.ac.th</a></p><p>if [ "$1" = "" ]; then<br
/> echo -e &#8220;\nUsage: getyoutube <a
href="http://www.youtube.com/watch?v=UHvAXLBMWGI" rel="nofollow">http://www.youtube.com/watch?v=UHvAXLBMWGI</a>\n&#8221;<br
/> else<br
/> url=$1<br
/> name=${url:(-11)} ### get the last 11 chars<br
/> #echo $name</p><p> fullscreenURL=$( wget -q -nv  $url -O &#8211; | grep \&amp;video_id= )<br
/> echo $fullscreenURL<br
/> title=${fullscreenURL##*=} ### delete to last occurance of &#8216;=&#8217;<br
/> title=${title/\&#8217;;/} ### replace &#8216;; with nothing ${title:(-2)} or #{title#(-2)} do not work&#8217; :(<br
/> echo $title</p><p> videoID=${fullscreenURL:54} ### cut first 53 chars<br
/> videoID=${videoID/\&#8217;;/} ##<br
/> echo $videoID</p><p> wget -q -nv &#8220;http://www.youtube.com/get_video?$videoID&#8221; -O &#8220;$title.flv&#8221;<br
/> fi</p> ]]></content:encoded> </item> <item><title>By: Roger</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-141376</link> <dc:creator>Roger</dc:creator> <pubDate>Fri, 12 Oct 2007 11:24:16 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-141376</guid> <description>A good script is Mortube
Demo: http://www.morllaines.com/busca_youtube/?tag=brasil (Portuguese)
Download: http://www.morllaines.com/downloads/arquivo.php?file=54 (English)
The script require youtube apy key on config.php
And Curl installed on server</description> <content:encoded><![CDATA[<p>A good script is Mortube<br
/> Demo: <a
href="http://www.morllaines.com/busca_youtube/?tag=brasil" rel="nofollow">http://www.morllaines.com/busca_youtube/?tag=brasil</a> (Portuguese)<br
/> Download: <a
href="http://www.morllaines.com/downloads/arquivo.php?file=54" rel="nofollow">http://www.morllaines.com/downloads/arquivo.php?file=54</a> (English)</p><p>The script require youtube apy key on config.php<br
/> And Curl installed on server</p> ]]></content:encoded> </item> <item><title>By: Coolclu3</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-140921</link> <dc:creator>Coolclu3</dc:creator> <pubDate>Tue, 28 Aug 2007 16:55:21 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-140921</guid> <description>Uhm...youtube has changed their code. now this script doesn&#039;t work any more, from something like 20th August - 20007. Anyone can help fix the code? savetube.com has done it</description> <content:encoded><![CDATA[<p>Uhm&#8230;youtube has changed their code. now this script doesn&#8217;t work any more, from something like 20th August &#8211; 20007. Anyone can help fix the code? savetube.com has done it</p> ]]></content:encoded> </item> <item><title>By: James Attard</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-140250</link> <dc:creator>James Attard</dc:creator> <pubDate>Tue, 19 Jun 2007 14:22:34 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-140250</guid> <description>does anybody know how he arrived to the get_video.php ? i mean how did he know that that php file existed on youtube servers?</description> <content:encoded><![CDATA[<p>does anybody know how he arrived to the get_video.php ? i mean how did he know that that php file existed on youtube servers?</p> ]]></content:encoded> </item> <item><title>By: Jen</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-80629</link> <dc:creator>Jen</dc:creator> <pubDate>Wed, 28 Feb 2007 22:14:43 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-80629</guid> <description>I recommend http://www.snatchvid.com it&#039;s very easy and fast to use!</description> <content:encoded><![CDATA[<p>I recommend <a
href="http://www.snatchvid.com" rel="nofollow">http://www.snatchvid.com</a> it&#8217;s very easy and fast to use!</p> ]]></content:encoded> </item> <item><title>By: SaveTube</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-76128</link> <dc:creator>SaveTube</dc:creator> <pubDate>Mon, 19 Feb 2007 06:34:41 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-76128</guid> <description>I use http://www.savetube.com to save any youtube videos.  They also got a latest saved section.</description> <content:encoded><![CDATA[<p>I use <a
href="http://www.savetube.com" rel="nofollow">http://www.savetube.com</a> to save any youtube videos.  They also got a latest saved section.</p> ]]></content:encoded> </item> <item><title>By: nixcraft</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73897</link> <dc:creator>nixcraft</dc:creator> <pubDate>Thu, 15 Feb 2007 04:39:48 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73897</guid> <description>James,
You can use
&lt;pre&gt;code&lt;/pre&gt;
or
&lt;code&gt;code&lt;/code&gt; tags :)</description> <content:encoded><![CDATA[<p>James,</p><p>You can use<br
/> &lt;pre>code&lt;/pre></p><p>or<br
/> &lt;code>code&lt;/code> tags :)</p> ]]></content:encoded> </item> <item><title>By: James</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73277</link> <dc:creator>James</dc:creator> <pubDate>Wed, 14 Feb 2007 04:36:23 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73277</guid> <description>nv=`cat ${tmp} &#124; grep &#039;h1 id=&quot;video_title&quot;&#039; &#124; cut -d &quot;&gt;&quot; -f 2 &#124; cut -d &quot;lt&quot; -f 1`
*** i can&#039;t post a less than symbol, so change the lt in that command to a less than symbol
echo &quot;Title ${nv}&quot;
wget &quot;${uf}&quot; -O ${tmp}.flv
ffmpeg -i ${tmp}.flv -r 30 -ab 56 -ar 22050 -b 1500k -s 320x240 &quot;${nv}.mpg&quot;
mv ${tmp}.flv &quot;${nv}.flv&quot;
rm ${tmp}
exit</description> <content:encoded><![CDATA[<p>nv=`cat ${tmp} | grep &#8216;h1 id=&#8221;video_title&#8221;&#8216; | cut -d &#8220;&gt;&#8221; -f 2 | cut -d &#8220;lt&#8221; -f 1`</p><p>*** i can&#8217;t post a less than symbol, so change the lt in that command to a less than symbol</p><p>echo &#8220;Title ${nv}&#8221;<br
/> wget &#8220;${uf}&#8221; -O ${tmp}.flv<br
/> ffmpeg -i ${tmp}.flv -r 30 -ab 56 -ar 22050 -b 1500k -s 320&#215;240 &#8220;${nv}.mpg&#8221;<br
/> mv ${tmp}.flv &#8220;${nv}.flv&#8221;<br
/> rm ${tmp}<br
/> exit</p> ]]></content:encoded> </item> <item><title>By: James</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73276</link> <dc:creator>James</dc:creator> <pubDate>Wed, 14 Feb 2007 04:35:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73276</guid> <description>#!/bin/bash
bu=&quot;http://youtube.com/get_video.php?&quot;
tmp=`mktemp`
touch ${tmp}.flv
read -p &quot;YouTube url? &quot; ur
wget ${ur} -O ${tmp}
uf=${bu}`grep player2.swf ${tmp} &#124; cut -d? -f2 &#124; cut -d\&quot; -f1`
nv=`cat ${tmp} &#124; grep &#039;h1 id=&quot;video_title&quot;&#039; &#124; cut -d &quot;&gt;&quot; -f 2 &#124; cut -d &quot;</description> <content:encoded><![CDATA[<p>#!/bin/bash<br
/> bu=&#8221;http://youtube.com/get_video.php?&#8221;<br
/> tmp=`mktemp`<br
/> touch ${tmp}.flv<br
/> read -p &#8220;YouTube url? &#8221; ur<br
/> wget ${ur} -O ${tmp}<br
/> uf=${bu}`grep player2.swf ${tmp} | cut -d? -f2 | cut -d\&#8221; -f1`<br
/> nv=`cat ${tmp} | grep &#8216;h1 id=&#8221;video_title&#8221;&#8216; | cut -d &#8220;&gt;&#8221; -f 2 | cut -d &#8220;</p> ]]></content:encoded> </item> <item><title>By: James</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73275</link> <dc:creator>James</dc:creator> <pubDate>Wed, 14 Feb 2007 04:32:56 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-73275</guid> <description>Here&#039;s the bash script, made more solid. I fixed the ffmpeg call (it doesn&#039;t like making 15fps mpeg files), and kept the flv at the end.
If you want to use the flv from your own apache server you&#039;ll need to add
video/x-flv                     flv
to /etc/mime.types and restart apache, then go and get flash_flv player from http://www.jeroenwijering.com/upload/flash_flv_player.zip
unpack it, put flvplayer.swf and flvplayer.html on your site with the .flv, and modify flvplayer.html appropriately
#!/bin/bash
bu=&quot;http://youtube.com/get_video.php?&quot;
tmp=`mktemp`
touch ${tmp}.flv
read -p &quot;YouTube url? &quot; ur
wget ${ur} -O ${tmp}
uf=${bu}`grep player2.swf ${tmp} &#124; cut -d? -f2 &#124; cut -d\&quot; -f1`
nv=`cat ${tmp} &#124; grep &#039;h1 id=&quot;video_title&quot;&#039; &#124; cut -d &quot;&gt;&quot; -f 2 &#124; cut -d &quot;</description> <content:encoded><![CDATA[<p>Here&#8217;s the bash script, made more solid. I fixed the ffmpeg call (it doesn&#8217;t like making 15fps mpeg files), and kept the flv at the end.</p><p>If you want to use the flv from your own apache server you&#8217;ll need to add</p><p>video/x-flv                     flv</p><p>to /etc/mime.types and restart apache, then go and get flash_flv player from <a
href="http://www.jeroenwijering.com/upload/flash_flv_player.zip" rel="nofollow">http://www.jeroenwijering.com/upload/flash_flv_player.zip</a></p><p>unpack it, put flvplayer.swf and flvplayer.html on your site with the .flv, and modify flvplayer.html appropriately</p><p>#!/bin/bash<br
/> bu=&#8221;http://youtube.com/get_video.php?&#8221;<br
/> tmp=`mktemp`<br
/> touch ${tmp}.flv<br
/> read -p &#8220;YouTube url? &#8221; ur<br
/> wget ${ur} -O ${tmp}<br
/> uf=${bu}`grep player2.swf ${tmp} | cut -d? -f2 | cut -d\&#8221; -f1`<br
/> nv=`cat ${tmp} | grep &#8216;h1 id=&#8221;video_title&#8221;&#8216; | cut -d &#8220;&gt;&#8221; -f 2 | cut -d &#8220;</p> ]]></content:encoded> </item> <item><title>By: TjL</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-18263</link> <dc:creator>TjL</dc:creator> <pubDate>Sat, 21 Oct 2006 03:12:40 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-18263</guid> <description>The ZSH code has a problem:
ffmpeg version 0.4.9-pre1, build 4718, Copyright (c) 2000-2004 Fabrice Bellard
built on Apr  4 2005 06:01:28, gcc: 3.4.2 [FreeBSD] 20040728
Input #0, flv, from &#039;j0u_F8-oYQE.flv&#039;:
Duration: N/A, bitrate: N/A
Stream #0.0: Audio: mp3, 22050 Hz, mono
Stream #0.1: Video: flv, 320x240, 15.00 fps
Output #0, mpeg, to &#039;j0u_F8-oYQE.mpg&#039;:
Stream #0.0: Video: mpeg1video, 320x240, 15.00 fps, q=2-31, 500 kb/s
Stream #0.1: Audio: mp2, 22050 Hz, mono, 56 kb/s
Stream mapping:
Stream #0.1 -&gt; #0.0
Stream #0.0 -&gt; #0.1
[mpeg1video @ 0x282f4010]MPEG1/2 doesnt support 15/1 fps
Error while opening codec for stream #0.0 - maybe incorrect parameters such as bit_rate, rate, width or height</description> <content:encoded><![CDATA[<p>The ZSH code has a problem:</p><p>ffmpeg version 0.4.9-pre1, build 4718, Copyright (c) 2000-2004 Fabrice Bellard<br
/> built on Apr  4 2005 06:01:28, gcc: 3.4.2 [FreeBSD] 20040728<br
/> Input #0, flv, from &#8216;j0u_F8-oYQE.flv&#8217;:<br
/> Duration: N/A, bitrate: N/A<br
/> Stream #0.0: Audio: mp3, 22050 Hz, mono<br
/> Stream #0.1: Video: flv, 320&#215;240, 15.00 fps<br
/> Output #0, mpeg, to &#8216;j0u_F8-oYQE.mpg&#8217;:<br
/> Stream #0.0: Video: mpeg1video, 320&#215;240, 15.00 fps, q=2-31, 500 kb/s<br
/> Stream #0.1: Audio: mp2, 22050 Hz, mono, 56 kb/s<br
/> Stream mapping:<br
/> Stream #0.1 -&gt; #0.0<br
/> Stream #0.0 -&gt; #0.1<br
/> [mpeg1video @ 0x282f4010]MPEG1/2 doesnt support 15/1 fps<br
/> Error while opening codec for stream #0.0 &#8211; maybe incorrect parameters such as bit_rate, rate, width or height</p> ]]></content:encoded> </item> <item><title>By: luke</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-9730</link> <dc:creator>luke</dc:creator> <pubDate>Tue, 19 Sep 2006 07:39:27 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-9730</guid> <description>great :D
thats real hacking lol</description> <content:encoded><![CDATA[<p>great :D<br
/> thats real hacking lol</p> ]]></content:encoded> </item> <item><title>By: nixcraft</title><link>http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-5191</link> <dc:creator>nixcraft</dc:creator> <pubDate>Sat, 19 Aug 2006 18:17:08 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-and-watch-youtube-videos-from-linux-shell-prompt.html#comment-5191</guid> <description>Nice to see you are using Zsh :)
Appreciate your script/post.</description> <content:encoded><![CDATA[<p>Nice to see you are using Zsh :)</p><p>Appreciate your script/post.</p> ]]></content:encoded> </item> </channel> </rss>
