<?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>Comentarios en: Descargar videos de Youtube en Linux por terminal!</title>
	<atom:link href="http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/feed/" rel="self" type="application/rss+xml" />
	<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/</link>
	<description>Blogger sapiens sapiens</description>
	<lastBuildDate>Sat, 11 Feb 2012 01:53:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Miguel</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1641</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Thu, 20 Oct 2011 00:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1641</guid>
		<description>me da el error /usr/local/bin/youtube: line 1: error de sintaxis cerca de token no esperado `newline&#039; 
/usr/local/bin/youtube: line 1: `&lt;code&gt;#!/bin/bash&#039;  
 
 
y con el youtube-dl, no me grabo el video con sonido 
 </description>
		<content:encoded><![CDATA[<p>me da el error /usr/local/bin/youtube: line 1: error de sintaxis cerca de token no esperado `newline&#039;<br />
/usr/local/bin/youtube: line 1: `&lt;code&gt;#!/bin/bash&#039;  </p>
<p>y con el youtube-dl, no me grabo el video con sonido</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: seamarazul</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1444</link>
		<dc:creator>seamarazul</dc:creator>
		<pubDate>Thu, 25 Feb 2010 10:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1444</guid>
		<description>hola  
 
Mas sencillo aun instalas en terminal lo sgte: 
 
sudo apt-get install youtube-dl  
 
y luego para descargar cualquier video de youtube solo debes poner lo sgte: 
 
youtube-dl URL del video. 
 
para mi es la mejor manera porque aprovechas todo el ancho de banda. 
 
saludos. 
 </description>
		<content:encoded><![CDATA[<p>hola  </p>
<p>Mas sencillo aun instalas en terminal lo sgte: </p>
<p>sudo apt-get install youtube-dl  </p>
<p>y luego para descargar cualquier video de youtube solo debes poner lo sgte: </p>
<p>youtube-dl URL del video. </p>
<p>para mi es la mejor manera porque aprovechas todo el ancho de banda. </p>
<p>saludos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: llimi</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1295</link>
		<dc:creator>llimi</dc:creator>
		<pubDate>Sun, 12 Jul 2009 22:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1295</guid>
		<description>/usr/local/bin/youtube: line 1: error de sintaxis cerca de token no esperado `newline&#039; 
/usr/local/bin/youtube: line 1: `&lt;code&gt;#!/bin/bash&#039; 
este  es el error que me sale, por favor alguien me podria ayudar </description>
		<content:encoded><![CDATA[<p>/usr/local/bin/youtube: line 1: error de sintaxis cerca de token no esperado `newline&#039;<br />
/usr/local/bin/youtube: line 1: `&lt;code&gt;#!/bin/bash&#039;<br />
este  es el error que me sale, por favor alguien me podria ayudar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Jh®</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1200</link>
		<dc:creator>Jh®</dc:creator>
		<pubDate>Tue, 09 Jun 2009 03:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1200</guid>
		<description>@&lt;a href=&quot;#comment-1132&quot; rel=&quot;nofollow&quot;&gt;manuel&lt;/a&gt;: Aquí te va, recuerda copiarlo tal cual:


&lt;code&gt;#!/bin/bash

if [ $# -lt 1 ]; then
echo &quot;Uso: $0 &lt;url del video&gt;&quot;
exit 1
fi

ID=`echo $1 &#124; cut -d= -f2 &#124; cut -d\&amp; -f1`
FILE=&quot;youtube-${ID}&quot;
BASE_URL=&quot;http://youtube.com/get_video.php&quot;

wget -O /tmp/${FILE} $1

if [ $? == 0 ]; then
T_PARAM=`grep &#039;&amp;t=&#039; /tmp/${FILE} &#124; head -n 1 &#124; awk -F&#039;&amp;t=&#039; &#039;{print $2}&#039; &#124; cut -d\&amp; -f 1`
VIDEO_URL=&quot;${BASE_URL}?video_id=${ID}&amp;t=${T_PARAM}&quot;

wget -O ${FILE}.flv $VIDEO_URL

if [ $? != 0 ]; then
rm -f ${FILE}.flv
exit 1
else
ffmpeg -i ${FILE}.flv ${FILE}.avi
fi
fi

rm -f /tmp/${FILE}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-1132" rel="nofollow">manuel</a>: Aquí te va, recuerda copiarlo tal cual:</p>
<p><code>#!/bin/bash</p>
<p>if [ $# -lt 1 ]; then<br />
echo "Uso: $0 <url del video>"<br />
exit 1<br />
fi</p>
<p>ID=`echo $1 | cut -d= -f2 | cut -d\&#038; -f1`<br />
FILE="youtube-${ID}"<br />
BASE_URL="http://youtube.com/get_video.php"</p>
<p>wget -O /tmp/${FILE} $1</p>
<p>if [ $? == 0 ]; then<br />
T_PARAM=`grep '&#038;t=' /tmp/${FILE} | head -n 1 | awk -F'&#038;t=' '{print $2}' | cut -d\&#038; -f 1`<br />
VIDEO_URL="${BASE_URL}?video_id=${ID}&#038;t=${T_PARAM}"</p>
<p>wget -O ${FILE}.flv $VIDEO_URL</p>
<p>if [ $? != 0 ]; then<br />
rm -f ${FILE}.flv<br />
exit 1<br />
else<br />
ffmpeg -i ${FILE}.flv ${FILE}.avi<br />
fi<br />
fi</p>
<p>rm -f /tmp/${FILE}</url></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: ecuato</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1155</link>
		<dc:creator>ecuato</dc:creator>
		<pubDate>Fri, 17 Apr 2009 04:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1155</guid>
		<description>Hola, podrias poner el script otra vez. Gracias</description>
		<content:encoded><![CDATA[<p>Hola, podrias poner el script otra vez. Gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: manuel</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-1132</link>
		<dc:creator>manuel</dc:creator>
		<pubDate>Sun, 22 Mar 2009 01:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-1132</guid>
		<description>oye man podrias poner de nuevo el código, es que ya lo quitaron del enlace que das... gracias</description>
		<content:encoded><![CDATA[<p>oye man podrias poner de nuevo el código, es que ya lo quitaron del enlace que das&#8230; gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Jh®</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-550</link>
		<dc:creator>Jh®</dc:creator>
		<pubDate>Sun, 20 Jul 2008 07:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-550</guid>
		<description>@Cesar: Pues ya puedes dormir hoy tranquilo sabiendo que tienes algo nuevo en mente ;)</description>
		<content:encoded><![CDATA[<p>@Cesar: Pues ya puedes dormir hoy tranquilo sabiendo que tienes algo nuevo en mente <img src='http://jhonlara.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Cesar Andres Morales</title>
		<link>http://jhonlara.com/linux/descargar-videos-de-youtube-en-linux-por-terminal/comment-page-1/#comment-549</link>
		<dc:creator>Cesar Andres Morales</dc:creator>
		<pubDate>Sun, 20 Jul 2008 02:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://jhonlara.com/utilerias/descargar-videos-de-youtube-en-linux-por-terminal/#comment-549</guid>
		<description>Hola Agradesco mucho el programita  me es muy util ademas es facil de manejar y lo mejor es puedo ver su codigo fuente algo que no se hace en Guindows</description>
		<content:encoded><![CDATA[<p>Hola Agradesco mucho el programita  me es muy util ademas es facil de manejar y lo mejor es puedo ver su codigo fuente algo que no se hace en Guindows</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.422 seconds -->

