<?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: Saving Flash Videos In Linux</title>
	<atom:link href="http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/</link>
	<description>Computer Help from your Friendly How-To Geek</description>
	<lastBuildDate>Sun, 22 Nov 2009 01:15:32 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Darkman</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-79726</link>
		<dc:creator>Darkman</dc:creator>
		<pubDate>Tue, 10 Nov 2009 17:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-79726</guid>
		<description>Hello,

I have to apologize. The matter is that you have to be quick, because when the video once plays to the end, it disappears. Thanks for the post, works cooool :-)</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I have to apologize. The matter is that you have to be quick, because when the video once plays to the end, it disappears. Thanks for the post, works cooool <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darkman</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-79725</link>
		<dc:creator>Darkman</dc:creator>
		<pubDate>Tue, 10 Nov 2009 17:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-79725</guid>
		<description>This really doesn&#039;t work for me. Yes, there are Flash* filss, but this are only the advertisement banners. The main video is just not there...</description>
		<content:encoded><![CDATA[<p>This really doesn&#8217;t work for me. Yes, there are Flash* filss, but this are only the advertisement banners. The main video is just not there&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blake</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-72388</link>
		<dc:creator>Blake</dc:creator>
		<pubDate>Sun, 24 May 2009 17:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-72388</guid>
		<description>I liked this so much I made a script for it. Pretty much the script will let you know if there is no video in your /tmp, or if there is more than one it opens the /tmp folder so you can pick the one you want. Otherwise it just opens a box with zenity to let you name it.

#!/bin/bash
count=$(ls /tmp/Flash* &#124; wc -l)

function cancel 
{
	if [ &quot;$?&quot; = 1 ]; then
		exit 1
	fi
}

if [ &quot;$count&quot; = 0 ]
	then /usr/bin/zenity --error --title=&quot;ERROR!&quot; --text=&quot;There is no video saved in your /tmp directory. Please wait until it is completely saved.&quot;
	exit 1

elif [ &quot;$count&quot; != 1 ]
	then /usr/bin/zenity --error --title=&quot;ERROR!&quot; --text=&quot;There are two or more instances of a flash video in your /tmp directory, Nautilus will now open. Please select the video you want to save.&quot;		
		nautilus /tmp/
else 
		name=$(/usr/bin/zenity --entry --title=&quot;Name your Video&quot; --height=100 --width=300 --text=&quot;Please name your video &quot;)
		cancel	
		cp /tmp/Fla* ~/Videos/&quot;$name&quot;
		
fi</description>
		<content:encoded><![CDATA[<p>I liked this so much I made a script for it. Pretty much the script will let you know if there is no video in your /tmp, or if there is more than one it opens the /tmp folder so you can pick the one you want. Otherwise it just opens a box with zenity to let you name it.</p>
<p>#!/bin/bash<br />
count=$(ls /tmp/Flash* | wc -l)</p>
<p>function cancel<br />
{<br />
	if [ "$?" = 1 ]; then<br />
		exit 1<br />
	fi<br />
}</p>
<p>if [ "$count" = 0 ]<br />
	then /usr/bin/zenity &#8211;error &#8211;title=&#8221;ERROR!&#8221; &#8211;text=&#8221;There is no video saved in your /tmp directory. Please wait until it is completely saved.&#8221;<br />
	exit 1</p>
<p>elif [ "$count" != 1 ]<br />
	then /usr/bin/zenity &#8211;error &#8211;title=&#8221;ERROR!&#8221; &#8211;text=&#8221;There are two or more instances of a flash video in your /tmp directory, Nautilus will now open. Please select the video you want to save.&#8221;<br />
		nautilus /tmp/<br />
else<br />
		name=$(/usr/bin/zenity &#8211;entry &#8211;title=&#8221;Name your Video&#8221; &#8211;height=100 &#8211;width=300 &#8211;text=&#8221;Please name your video &#8220;)<br />
		cancel<br />
		cp /tmp/Fla* ~/Videos/&#8221;$name&#8221;</p>
<p>fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linux</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-70583</link>
		<dc:creator>Linux</dc:creator>
		<pubDate>Sun, 19 Apr 2009 16:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-70583</guid>
		<description>Great article. You show how saving Flash videos is less complicated than people make it seem to be.</description>
		<content:encoded><![CDATA[<p>Great article. You show how saving Flash videos is less complicated than people make it seem to be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fresno</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-70577</link>
		<dc:creator>fresno</dc:creator>
		<pubDate>Sun, 19 Apr 2009 11:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-70577</guid>
		<description>Congratulations and thanks for this post. Just what I was looking for: A way to download flash videos without installing more stuff. :D</description>
		<content:encoded><![CDATA[<p>Congratulations and thanks for this post. Just what I was looking for: A way to download flash videos without installing more stuff. <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sum Yung Gai</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-66139</link>
		<dc:creator>Sum Yung Gai</dc:creator>
		<pubDate>Tue, 03 Feb 2009 21:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-66139</guid>
		<description>&#039;Question: &quot;Yes but how do i do it in windows?? anyone??&quot;&#039;
&#039;Answer: Install Linux.&#039;

+1!  Couldn&#039;t agree more.  Linux has definitely made my maintenance workload plummet.

@James:  You would do well to give a desktop-oriented Linux distro a try.  Ubuntu is a very good choice.  So is Debian, ever since the slick GUI installer a couple of years ago.  A Latin American family I know has been on Kubuntu for just over a year now.  They do everything with it--videos, IM, iPod, MySpace/Facebook, etc. with no fuss, and in two languages.  :-)

Now, for downloading videos from YouTube, I use a GPL&#039;d script called &quot;youtube-dl&quot; that some kind soul wrote (just Google for it).  It&#039;s written in Python and is very easy to use.  Adobe Flash *NOT* required for using it, either!  I download the videos with youtube-dl, and then I just use my favorite video player--usually MPlayer or VLC--to watch them.

--SYG</description>
		<content:encoded><![CDATA[<p>&#8216;Question: &#8220;Yes but how do i do it in windows?? anyone??&#8221;&#8216;<br />
&#8216;Answer: Install Linux.&#8217;</p>
<p>+1!  Couldn&#8217;t agree more.  Linux has definitely made my maintenance workload plummet.</p>
<p>@James:  You would do well to give a desktop-oriented Linux distro a try.  Ubuntu is a very good choice.  So is Debian, ever since the slick GUI installer a couple of years ago.  A Latin American family I know has been on Kubuntu for just over a year now.  They do everything with it&#8211;videos, IM, iPod, MySpace/Facebook, etc. with no fuss, and in two languages.  <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Now, for downloading videos from YouTube, I use a GPL&#8217;d script called &#8220;youtube-dl&#8221; that some kind soul wrote (just Google for it).  It&#8217;s written in Python and is very easy to use.  Adobe Flash *NOT* required for using it, either!  I download the videos with youtube-dl, and then I just use my favorite video player&#8211;usually MPlayer or VLC&#8211;to watch them.</p>
<p>&#8211;SYG</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: corneliu</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-66112</link>
		<dc:creator>corneliu</dc:creator>
		<pubDate>Tue, 03 Feb 2009 14:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-66112</guid>
		<description>Question: &lt;i&gt;&quot;Yes but how do i do it in windows?? anyone??&quot;&lt;/i&gt;
Answer: Install Linux.</description>
		<content:encoded><![CDATA[<p>Question: <i>&#8220;Yes but how do i do it in windows?? anyone??&#8221;</i><br />
Answer: Install Linux.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Jones</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-66100</link>
		<dc:creator>Alan Jones</dc:creator>
		<pubDate>Tue, 03 Feb 2009 08:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-66100</guid>
		<description>Another thing I&#039;ll often do is make a link as in 

ln /tmp/Flashblah ~/thevid.flv

important thing is not to use a symlink (ln -s) though this means it need to be on the same block device, but now if you accidentally close it after it&#039;s loaded, but before saving it&#039;ll still be there. Links are very awesome - like having multiple copies of the same file without any additional space. No matter which one you delete the others remain. Though once you delete the last one the file is really gone.

Cheers,

Alan.</description>
		<content:encoded><![CDATA[<p>Another thing I&#8217;ll often do is make a link as in </p>
<p>ln /tmp/Flashblah ~/thevid.flv</p>
<p>important thing is not to use a symlink (ln -s) though this means it need to be on the same block device, but now if you accidentally close it after it&#8217;s loaded, but before saving it&#8217;ll still be there. Links are very awesome &#8211; like having multiple copies of the same file without any additional space. No matter which one you delete the others remain. Though once you delete the last one the file is really gone.</p>
<p>Cheers,</p>
<p>Alan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: onan</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-66071</link>
		<dc:creator>onan</dc:creator>
		<pubDate>Mon, 02 Feb 2009 17:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-66071</guid>
		<description>This technique works under any os not just linux, it&#039;s just a matter of understanding that to display any remote content locally, it has to be retrieved. It usually lives in browser cache or temporary folders. (windows user may have to rely on unlocker to copy the file).

But this method is certainly not a true way of downloading flash video, as you have to have flash plugin and go to the actual website and wait for the video to stream in its entirety. 

There are tools that allow to download these videos such as clive (http://clive.sourceforge.net/) or websites such as http://vixy.net</description>
		<content:encoded><![CDATA[<p>This technique works under any os not just linux, it&#8217;s just a matter of understanding that to display any remote content locally, it has to be retrieved. It usually lives in browser cache or temporary folders. (windows user may have to rely on unlocker to copy the file).</p>
<p>But this method is certainly not a true way of downloading flash video, as you have to have flash plugin and go to the actual website and wait for the video to stream in its entirety. </p>
<p>There are tools that allow to download these videos such as clive (<a href="http://clive.sourceforge.net/" rel="nofollow">http://clive.sourceforge.net/</a>) or websites such as <a href="http://vixy.net" rel="nofollow">http://vixy.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Geek</title>
		<link>http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/comment-page-1/#comment-65989</link>
		<dc:creator>The Geek</dc:creator>
		<pubDate>Sun, 01 Feb 2009 02:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/linux/saving-flash-videos-in-linux/#comment-65989</guid>
		<description>@rrp

The link that you posted is to a video... this is clearly a written article and not a copy of anything.

This article is simply detailing a very common technique that has been used and written about by many others for years.</description>
		<content:encoded><![CDATA[<p>@rrp</p>
<p>The link that you posted is to a video&#8230; this is clearly a written article and not a copy of anything.</p>
<p>This article is simply detailing a very common technique that has been used and written about by many others for years.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
