<?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"
	>
<channel>
	<title>Comments on: Saving Quicktime movies that have save disabled (OS X)</title>
	<atom:link href="http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/</link>
	<description>adding insult to injury since 1999</description>
	<pubDate>Tue, 06 Jan 2009 02:52:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: alex</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-11521</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sat, 21 May 2005 17:59:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-11521</guid>
		<description>Hi,
I've tried the tips and it didn't work...
What heppends is that I never have a "QuickTimePlugIn…" file in the tmp/501
I've already tried about 5 different tips, and I never see this temp files in the 501 folder...
I only have one user in my computer...
I already enabled the save file cache in the quicktime system preferences...
And I'm trying to download movies from the fastchannel site, using the safari browser...
I could really use some help now...
Thanks!!
</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;ve tried the tips and it didn&#8217;t work&#8230;<br />
What heppends is that I never have a &#8220;QuickTimePlugIn&#8230;&#8221; file in the tmp/501<br />
I&#8217;ve already tried about 5 different tips, and I never see this temp files in the 501 folder&#8230;<br />
I only have one user in my computer&#8230;<br />
I already enabled the save file cache in the quicktime system preferences&#8230;<br />
And I&#8217;m trying to download movies from the fastchannel site, using the safari browser&#8230;<br />
I could really use some help now&#8230;<br />
Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CrackerDan</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-4443</link>
		<dc:creator>CrackerDan</dc:creator>
		<pubDate>Thu, 11 Nov 2004 19:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-4443</guid>
		<description>Did anyone say how to fix the fact that it is save disabled so you can play with it in Premiere, Final Cut, etc?</description>
		<content:encoded><![CDATA[<p>Did anyone say how to fix the fact that it is save disabled so you can play with it in Premiere, Final Cut, etc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-670</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-670</guid>
		<description>The easy way... open a terminal and cd to /tmp/501 after viewing a movie. (The 501 is your user id so it will be different for other users on the same machine.)




Copy the temp file to ~/Movies/newname.mov. It'll open with the QuickTime player because of the .mov extension.




-Mostly Harmless</description>
		<content:encoded><![CDATA[<p>The easy way&#8230; open a terminal and cd to /tmp/501 after viewing a movie. (The 501 is your user id so it will be different for other users on the same machine.)</p>
<p>Copy the temp file to ~/Movies/newname.mov. It&#8217;ll open with the QuickTime player because of the .mov extension.</p>
<p>-Mostly Harmless</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-671</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-671</guid>
		<description>#!/usr/bin/perl -w




$uid = qx(id -u); chop $uid;


$tmpdir = "/tmp/$uid/Temporary Items/";


$outdir = glob ("~/Movies/");





opendir(DIR, "$tmpdir") or die "Can't open $tmpdir: $!";


@files = grep { /^QT/ &#38;&#38;  -f "$tmpdir/$_" } readdir(DIR);


closedir DIR;




foreach $file (@files) {




        $size = (stat("$tmpdir/$file"))[7]/1024/1024;


        printf ("
Found: %s, %5.2f MB
", $file, $size);





        print ("New name? ");


        $name = &#60;STDIN&#62;; chop $name;


        $name = "${name}.mov" unless grep {/.mov$/} "$name";




        print ("
Moving $file to ${outdir}$name

");



        rename "${tmpdir}$file", "${outdir}$name" or die "Can't move file: $!";


}







Save that code to a file and make it executable (chmod 755 filename). Run it and it will prompt you for a name for each QT temp file and move it to your Movies directory.




-Mostly Harmless</description>
		<content:encoded><![CDATA[<p>#!/usr/bin/perl -w</p>
<p>$uid = qx(id -u); chop $uid;</p>
<p>$tmpdir = &#8220;/tmp/$uid/Temporary Items/&#8221;;</p>
<p>$outdir = glob (&#8220;~/Movies/&#8221;);</p>
<p>opendir(DIR, &#8220;$tmpdir&#8221;) or die &#8220;Can&#8217;t open $tmpdir: $!&#8221;;</p>
<p>@files = grep { /^QT/ &#038;&  -f &#8220;$tmpdir/$_&#8221; } readdir(DIR);</p>
<p>closedir <span class="caps">DIR</span>;</p>
<p>foreach $file (@files) {</p>
<p>        $size = (stat(&#8220;$tmpdir/$file&#8221;))[7]/1024/1024;</p>
<p>        printf (&#8221;<br />
Found: %s, %5.2f MB<br />
&#8220;, $file, $size);</p>
<p>        print (&#8220;New name? &#8220;);</p>
<p>        $name = &#60;STDIN&#62;; chop $name;</p>
<p>        $name = &#8220;${name}.mov&#8221; unless grep {/.mov$/} &#8220;$name&#8221;;</p>
<p>        print (&#8221;<br />
Moving $file to ${outdir}$name</p>
<p>&#8220;);</p>
<p>        rename &#8220;${tmpdir}$file&#8221;, &#8220;${outdir}$name&#8221; or die &#8220;Can&#8217;t move file: $!&#8221;;</p>
<p>}</p>
<p>Save that code to a file and make it executable (chmod 755 filename). Run it and it will prompt you for a name for each QT temp file and move it to your Movies directory.</p>
<p>-Mostly Harmless</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-672</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-672</guid>
		<description>Robert = Smart;</description>
		<content:encoded><![CDATA[<p>Robert = Smart;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-673</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-673</guid>
		<description>You guys are all too smart for me.




Christine</description>
		<content:encoded><![CDATA[<p>You guys are all too smart for me.</p>
<p>Christine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-674</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-674</guid>
		<description>Ok, file saved.  

Now if the file is save disabled via QT4, how do I make that file save abled (?) for cleaner, QT Pro, or Final Cut Pro ?</description>
		<content:encoded><![CDATA[<p>Ok, file saved.</p>
<p>Now if the file is save disabled via <span class="caps">QT4</span>, how do I make that file save abled (?) for cleaner, <span class="caps">QT </span>Pro, or Final Cut Pro ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: epac</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-675</link>
		<dc:creator>epac</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-675</guid>
		<description>you can always save the HTML code, and enable the cache, if it's disabled. (ie repalce something like:
"embed=http://some server/blh ablha/blah.mov" cache=false" with "ebed.... cache=true" (and load that page in the a browser...)

Jok</description>
		<content:encoded><![CDATA[<p>you can always save the <span class="caps">HTML</span> code, and enable the cache, if it&#8217;s disabled. (ie repalce something like:<br />
&#8220;embed=http://some server/blh ablha/blah.mov&#8221; cache=false&#8221; with &#8220;ebed&#8230;. cache=true&#8221; (and load that page in the a browser&#8230;)</p>
<p>Jok</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-676</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-676</guid>
		<description>how is this done on os 9?

Leo</description>
		<content:encoded><![CDATA[<p>how is this done on os 9?</p>
<p>Leo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jonathan</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-677</link>
		<dc:creator>jonathan</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-677</guid>
		<description>How can this be done in Microsoft Windows ?</description>
		<content:encoded><![CDATA[<p>How can this be done in Microsoft Windows ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maurin</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-678</link>
		<dc:creator>maurin</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-678</guid>
		<description>how you do it in WindowsXP?</description>
		<content:encoded><![CDATA[<p>how you do it in WindowsXP?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lemming</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-679</link>
		<dc:creator>Lemming</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-679</guid>
		<description>Under WindowsXP, the file will be stored under c:\documents and settings\username\local settings\temp

However, I haven't yet figured out how to make it a playable file.</description>
		<content:encoded><![CDATA[<p>Under WindowsXP, the file will be stored under c:documents and settingsusernamelocal settingstemp</p>
<p>However, I haven&#8217;t yet figured out how to make it a playable file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jan</title>
		<link>http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-680</link>
		<dc:creator>jan</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.saltedwound.com/archives/2001/11/05/saving-quicktime-movies-that-have-save-disabled-os-x/#comment-680</guid>
		<description>In windows all you have to do is move the quicktime file in the temp internet files to another folder, say on you desktop. It copes the entire file over... :)
</description>
		<content:encoded><![CDATA[<p>In windows all you have to do is move the quicktime file in the temp internet files to another folder, say on you desktop. It copes the entire file over&#8230; :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
