<?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: Jeffrey&#8217;s &#8220;Run Any Command&#8221; Lightroom Export Plugin</title>
	<atom:link href="http://regex.info/blog/lightroom-goodies/run-any-command/feed" rel="self" type="application/rss+xml" />
	<link>http://regex.info/blog</link>
	<description>Not a photo blog. A personal blog with photos.</description>
	<lastBuildDate>Wed, 23 May 2012 20:38:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Robin Cottiss</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-45279</link>
		<dc:creator>Robin Cottiss</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-45279</guid>
		<description>For completeness  here is what I do for the actual run command step to place a timestamp onto each image so I can see the time of each image in the resulting animation:

mogrify -fill white -stroke black  -font Arial -pointsize 36 -gravity SouthWest -annotate 0 &quot;{file} - {T2}&quot; &quot;{FILE}&quot;

Robin</description>
		<content:encoded><![CDATA[<p>For completeness  here is what I do for the actual run command step to place a timestamp onto each image so I can see the time of each image in the resulting animation:</p>
<p>mogrify -fill white -stroke black  -font Arial -pointsize 36 -gravity SouthWest -annotate 0 &#8220;{file} &#8211; {T2}&#8221; &#8220;{FILE}&#8221;</p>
<p>Robin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin Cottiss</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-45278</link>
		<dc:creator>Robin Cottiss</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-45278</guid>
		<description>I have an answer to my own question but if anyone has any better suggestions let me know.

I can use an ImageMagick command to make a unique filename based on the input names. My execute on completion command looks like this:


convert -loop 0 -delay 50 {FILES} -set filename:f &quot;output_%t&quot; &quot;{pictures}\TEST\%[filename:f].gif&quot;

Note the use of the -set to make a filename based n the input. It turns out that IM uses the 1st filename in {FILES} which is perfect for my needs.

It is very cool how you can mix the Plugin template values and IM escape variables in the same command.

Robin</description>
		<content:encoded><![CDATA[<p>I have an answer to my own question but if anyone has any better suggestions let me know.</p>
<p>I can use an ImageMagick command to make a unique filename based on the input names. My execute on completion command looks like this:</p>
<p>convert -loop 0 -delay 50 {FILES} -set filename:f &#8220;output_%t&#8221; &#8220;{pictures}\TEST\%[filename:f].gif&#8221;</p>
<p>Note the use of the -set to make a filename based n the input. It turns out that IM uses the 1st filename in {FILES} which is perfect for my needs.</p>
<p>It is very cool how you can mix the Plugin template values and IM escape variables in the same command.</p>
<p>Robin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin Cottiss</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-45277</link>
		<dc:creator>Robin Cottiss</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-45277</guid>
		<description>Hello, I am using the Run Any Command plugin to create an animated GIF in ImageMagick. I nearly have it working 100% automatically. I can select my sequence and export and I get an animated gif but the filename is always the same. The actual animateg GIF is created using an &#039;execute upon completion&#039; command and I would like to make the filename unique so if I create several gifs they would not overwrite. Are there any template fields or some other technique available in the post processing step to get an new filename? Thanks.</description>
		<content:encoded><![CDATA[<p>Hello, I am using the Run Any Command plugin to create an animated GIF in ImageMagick. I nearly have it working 100% automatically. I can select my sequence and export and I get an animated gif but the filename is always the same. The actual animateg GIF is created using an &#8216;execute upon completion&#8217; command and I would like to make the filename unique so if I create several gifs they would not overwrite. Are there any template fields or some other technique available in the post processing step to get an new filename? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-44267</link>
		<dc:creator>Jacob</dc:creator>
		<pubDate>Mon, 10 Oct 2011 17:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-44267</guid>
		<description>Jeffrey that helps, however when I use the {Path} token it gives the path with &quot;&gt;&quot; not &quot;\&quot; on Win 7.

example:
D: &gt; users &gt; username &gt; path &gt; to &gt; file

Can you specify the &quot;\&quot; character?

D:\users\username\path\to\file 

Thanks,
-Jacob

&lt;span class=&#039;jfriedl&#039;&gt;Yikes, not sure how that happened, but I&#039;ve pushed a new release that fixes it. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Jeffrey that helps, however when I use the {Path} token it gives the path with &#8220;&gt;&#8221; not &#8220;\&#8221; on Win 7.</p>
<p>example:<br />
D: &gt; users &gt; username &gt; path &gt; to &gt; file</p>
<p>Can you specify the &#8220;\&#8221; character?</p>
<p>D:\users\username\path\to\file </p>
<p>Thanks,<br />
-Jacob</p>
<p><span class='jfriedl'>Yikes, not sure how that happened, but I&#8217;ve pushed a new release that fixes it. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-44261</link>
		<dc:creator>Jacob</dc:creator>
		<pubDate>Mon, 10 Oct 2011 03:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-44261</guid>
		<description>Can you specify the source image as a command sequence?  I need to pull a maker note field from the original file and add it to the exported jpg.

&lt;span class=&#039;jfriedl&#039;&gt;Sure, you can use any of the &lt;a href=&#039;http://regex.info/blog/lightroom-goodies/template&#039; rel=&quot;nofollow&quot;&gt;template tokens&lt;/a&gt; that my plugins support, including &lt;tt&gt;{LIBRARYFILENAME}&lt;/tt&gt;. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Can you specify the source image as a command sequence?  I need to pull a maker note field from the original file and add it to the exported jpg.</p>
<p><span class='jfriedl'>Sure, you can use any of the <a href='http://regex.info/blog/lightroom-goodies/template' rel="nofollow">template tokens</a> that my plugins support, including <tt>{LIBRARYFILENAME}</tt>. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dkwo</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-43749</link>
		<dc:creator>dkwo</dc:creator>
		<pubDate>Tue, 02 Aug 2011 02:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-43749</guid>
		<description>I was wondering if this plugin helps you run any command on the image before it becomes JPEG -- not sure I described it right, I would like to run a command on the intermediate image (may it be a BMG or TIFF,) sort of pre-processing the image.

&lt;span class=&#039;jfriedl&#039;&gt;You can do that by having Lightroom export a TIFF/PSD, then using the command to do your processing and, finally, if you want a JPEG, have it do that as well. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>I was wondering if this plugin helps you run any command on the image before it becomes JPEG &#8212; not sure I described it right, I would like to run a command on the intermediate image (may it be a BMG or TIFF,) sort of pre-processing the image.</p>
<p><span class='jfriedl'>You can do that by having Lightroom export a TIFF/PSD, then using the command to do your processing and, finally, if you want a JPEG, have it do that as well. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vit Kovalcik</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-38921</link>
		<dc:creator>Vit Kovalcik</dc:creator>
		<pubDate>Wed, 05 May 2010 12:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-38921</guid>
		<description>Just a quick comment about opening a webpage using this tool as was asked by one of the users.
The proper command for running the default browser is:

start http://www.yourwebpage.com</description>
		<content:encoded><![CDATA[<p>Just a quick comment about opening a webpage using this tool as was asked by one of the users.<br />
The proper command for running the default browser is:</p>
<p>start <a href="http://www.yourwebpage.com" rel="nofollow">http://www.yourwebpage.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-38557</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 25 Mar 2010 22:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-38557</guid>
		<description>Dear Jeffrey
(This from Sydney, Australia)
Any chance of a run any command on *Import* filter?
Currently I tediously run exiftools on files where LR (or my camera) won&#039;t recognize the lens (such as CV manual focus lenses). What I do is copy new files to disk, run exiftools in the terminal, then import them. Things have got a bit better with the new beta, since updating exifdata didnt&#039; work relaibly before, I suppose now I could use LR to import, then exiftools then update.

But how cool if there were a way to run extra commands on import!

&lt;span class=&#039;jfriedl&#039;&gt;Not possible yet in LR3 )-: &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Dear Jeffrey<br />
(This from Sydney, Australia)<br />
Any chance of a run any command on *Import* filter?<br />
Currently I tediously run exiftools on files where LR (or my camera) won&#8217;t recognize the lens (such as CV manual focus lenses). What I do is copy new files to disk, run exiftools in the terminal, then import them. Things have got a bit better with the new beta, since updating exifdata didnt&#8217; work relaibly before, I suppose now I could use LR to import, then exiftools then update.</p>
<p>But how cool if there were a way to run extra commands on import!</p>
<p><span class='jfriedl'>Not possible yet in LR3 )-: &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Vanderbeck</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-38450</link>
		<dc:creator>John Vanderbeck</dc:creator>
		<pubDate>Thu, 11 Mar 2010 23:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-38450</guid>
		<description>Can I use this to ADD keywords to a photo on export?  I tried using exiftool with a basic example from the FAQ:

&quot;exiftool -keywords-=one -keywords+=one -keywords-=two -keywords+=two&quot;

But it didn&#039;t add the keywords.

&lt;span class=&#039;jfriedl&#039;&gt;Your command doesn&#039;t actually refer to the exported file (via the &lt;b&gt;{FILE}&lt;/b&gt; token). See the help button for info on tokens. I&#039;ve just pushed a new version of the plugin that includes a warning if the command doesn&#039;t seem to refer to the exported image. &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Can I use this to ADD keywords to a photo on export?  I tried using exiftool with a basic example from the FAQ:</p>
<p>&#8220;exiftool -keywords-=one -keywords+=one -keywords-=two -keywords+=two&#8221;</p>
<p>But it didn&#8217;t add the keywords.</p>
<p><span class='jfriedl'>Your command doesn&#8217;t actually refer to the exported file (via the <b>{FILE}</b> token). See the help button for info on tokens. I&#8217;ve just pushed a new version of the plugin that includes a warning if the command doesn&#8217;t seem to refer to the exported image. &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gotcha</title>
		<link>http://regex.info/blog/lightroom-goodies/run-any-command#comment-38083</link>
		<dc:creator>Gotcha</dc:creator>
		<pubDate>Wed, 03 Feb 2010 13:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://regex.info/blog/lightroom-goodies/run-any-command/#comment-38083</guid>
		<description>Hello Jeffrey,

Thank you for your answer.

The standard export command is too basic and I believed that your solution could bring to me of the assistance.
I need to make several operation after for a batch photographs. This batch passed in argument towards other programs.

Best regards.
Julien

&lt;span class=&#039;jfriedl&#039;&gt;This plugin can&#039;t do what you want because it has access to the exported images only for a moment during the export of each image, and doesn&#039;t know when the overall export has finished, nor what the final image filenames might be.  But the overall Export Action should be able to do what you want, because it will pass all the image filenames to the command you specify. You can make it a batch file (Windows) or script file (OSX), so you can have it do as complex an operation as you know how to program. &#8212;Jeffrey&lt;/span&gt;

&lt;span class=&#039;jfriedl&#039;&gt;&lt;b&gt;Update July 2010&lt;/b&gt; - I figured out a way process all the files at the end of an export, as of version &lt;b&gt;.27&lt;/b&gt; &#8212;Jeffrey&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>Hello Jeffrey,</p>
<p>Thank you for your answer.</p>
<p>The standard export command is too basic and I believed that your solution could bring to me of the assistance.<br />
I need to make several operation after for a batch photographs. This batch passed in argument towards other programs.</p>
<p>Best regards.<br />
Julien</p>
<p><span class='jfriedl'>This plugin can&#8217;t do what you want because it has access to the exported images only for a moment during the export of each image, and doesn&#8217;t know when the overall export has finished, nor what the final image filenames might be.  But the overall Export Action should be able to do what you want, because it will pass all the image filenames to the command you specify. You can make it a batch file (Windows) or script file (OSX), so you can have it do as complex an operation as you know how to program. &mdash;Jeffrey</span></p>
<p><span class='jfriedl'><b>Update July 2010</b> &#8211; I figured out a way process all the files at the end of an export, as of version <b>.27</b> &mdash;Jeffrey</span></p>
]]></content:encoded>
	</item>
</channel>
</rss>

