<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>James Stuckey Weber</title>
	<atom:link href="http://jamessw.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamessw.com</link>
	<description>All Things Post</description>
	<lastBuildDate>Mon, 31 Oct 2011 00:32:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Splitting subtitles automatically</title>
		<link>http://jamessw.com/blog/2011/10/splitting-subtitles-automatically/</link>
		<comments>http://jamessw.com/blog/2011/10/splitting-subtitles-automatically/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 00:32:05 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Editing]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[subtitles]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1499</guid>
		<description><![CDATA[I&#8217;ve been doing a lot of subtitle work recently, and have really enjoyed using Annotation Edit, which does pretty much everything for subtitles. Except for one thing I ended up doing way too much- splitting subtitles into 2 lines. So, I wrote a script that would take an STL, and split each line of text [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing a lot of subtitle work recently, and have really enjoyed using <a href="www.zeitanker.com">Annotation Edit</a>, which does pretty much everything for subtitles. Except for one thing I ended up doing way too much- splitting subtitles into 2 lines.</p>
<p>So, I wrote a script that would take an STL, and split each line of text into 2 lines, as close to the middle as possible. To get started, download <a href="http://jamessw.com/wp/wp-content/uploads/2011/10/subtitleSplit.py_.zip">subtitleSplit.py</a> and unzip.</p>
<p>To use subtitleSplit.py, open up Terminal on a Mac, and run the following command-</p>
<blockquote><p>python /path/to/subtitleSplit.py -f /path/to/original.stl</p></blockquote>
<p>This will split each line and spit it out into Terminal. To save this, you can either use the &#8220;&gt;&#8221; trick, or specify an output file.</p>
<blockquote><p>python /path/to/subtitleSplit.py -f /path/to/original.stl -o /path/to/new.stl</p></blockquote>
<p>The default maximum characters per line is 35, but you may need to change that, depending on your text size and font. You can set that with the -m flag.</p>
<blockquote><p>python /path/to/subtitleSplit.py -f /path/to/original.stl -o /path/to/new.stl -m 45</p></blockquote>
<p>For coders, this file contains a class called SubtitleSplit, which contains more options than are available through the command line.</p>
<p>Let me know if you run into any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/10/splitting-subtitles-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NLE Feature Request: Sequence and Project Variables</title>
		<link>http://jamessw.com/blog/2011/09/nle-feature-request-sequence-and-project-variables/</link>
		<comments>http://jamessw.com/blog/2011/09/nle-feature-request-sequence-and-project-variables/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 18:59:55 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Editing]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[nle]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1494</guid>
		<description><![CDATA[In my second installment of crazy things I want in my NLE- Project and Sequence Variables. A new window would be available in the NLE, called Variables. There, you would create a new variable with the following attributes: Type (number, text, file, boolean) Scope (Project, Sequence) Default value (This would be where you set the [...]]]></description>
			<content:encoded><![CDATA[<p>In my second installment of crazy things I want in my NLE- Project and Sequence Variables.</p>
<p>A new window would be available in the NLE, called Variables. There, you would create a new variable with the following attributes:</p>
<ul>
<li>Type (number, text, file, boolean)</li>
<li>Scope (Project, Sequence)</li>
<li>Default value (This would be where you set the values of project variables, and set what sequence variables would display before they are set on the sequence.)</li>
</ul>
<p>Then, if you want to use a variable, you simply drag that variable from the Variable Window to where ever you want to use them. Variables would need to be built in to the NLE at a very root level, so that variables would be accessible by default from anywhere, including third party plugins.</p>
<p>Sequence variables would be set from within Sequence Settings. A pane would display all the variables in the sequence, and you could set them easily.</p>
<p>Example 1: you need to take the same commercial and make 4 different versions, each with a different phone number that comes up in 2 places.</p>
<ol>
<li>Make a sequence that is completely ready to go, except the phone number.</li>
<li>Make a new text sequence variable called PhoneNumber, with the default to (555) 555-5555.</li>
<li>Add a text generator to your sequence, and drag the PhoneNumber variable to it. Format the phone number how you want it.</li>
<li>Repeat for the second place the phone number comes up.</li>
<li>Duplicate the master sequence 4 times.</li>
<li>In each one, change the PhoneNumber variable to the correct phone number.</li>
<li>Output.</li>
</ol>
<p>Example 2: You need to output 2 versions of your show- one with titles, one without.</p>
<ol>
<li>Make a new number sequence variable called TitlesVisible with a default of 100.</li>
<li>Add the TitlesVisible variable to the Opacity of each of the titles in the sequence.</li>
<li>When everything is done, duplicate the sequence, and set the TitlesVisible variable for that sequence to 0.</li>
<li>Output each.</li>
</ol>
<p>Using variables would take a bit of planning and foresight, but could save a lot of time in the long run. It would have to be integrated very well to be useful.</p>
<p>I see this as being very easy to use, yet very flexible. It should allow for variables in variables (so, a text variable could be used inside of a file path).</p>
<p>Would you find this useful? How would you use it?</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/09/nle-feature-request-sequence-and-project-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An NLE Suggestion &#8211; Play to in, Play from Out.</title>
		<link>http://jamessw.com/blog/2011/09/an-nle-suggestion-play-to-in-play-from-out/</link>
		<comments>http://jamessw.com/blog/2011/09/an-nle-suggestion-play-to-in-play-from-out/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 22:04:05 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Editing]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[play]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1487</guid>
		<description><![CDATA[I have been working on a series of web videos that are basically cutting an hour speech down to 10 minutes. I&#8217;ve been using Premiere for this, and my general workflow is to cut out the fat as I play it through the first time. I &#8220;Mark In&#8221; at the end of a good soundbite [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a series of web videos that are basically cutting an hour speech down to 10 minutes. I&#8217;ve been using Premiere for this, and my general workflow is to cut out the fat as I play it through the first time.</p>
<p>I &#8220;Mark In&#8221; at the end of a good soundbite I want to keep, &#8220;Mark Out&#8221; at the start of the next clip, and &#8220;Extract&#8221; to get rid of what I don&#8217;t want. I then back up the playhead, and preview the edit. If it&#8217;s not perfect, I have to undo, tweak the edit points, extract, and preview again.</p>
<p>After doing this dozens of times, I realized I need a new playback method.</p>
<p>We are already used to &#8220;play to out&#8221; and &#8220;play in to out&#8221;, but I&#8217;m suggesting &#8220;play to in, play from out.&#8221; In effect, this would be previewing what would happen if you extract from in to out, skipping over the video between the in and out points.</p>
<p><img class="aligncenter size-full wp-image-1489" title="PlayToInGif" src="http://jamessw.com/wp/wp-content/uploads/2011/09/PlayToInGif.gif" alt="" width="348" height="156" /></p>
<p>This would use the same preroll and postroll settings as &#8220;play around&#8221; does, allowing you to easily preview an edit before actually making it.</p>
<p>And while we&#8217;re at it, a &#8220;Play to In&#8221; function would be useful as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/09/an-nle-suggestion-play-to-in-play-from-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Waveform Art Filter</title>
		<link>http://jamessw.com/blog/2011/08/waveform-art-filter/</link>
		<comments>http://jamessw.com/blog/2011/08/waveform-art-filter/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 18:29:19 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[final cut]]></category>
		<category><![CDATA[waveform]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1445</guid>
		<description><![CDATA[The Waveform Art filter is a thoroughly useless piece of code for Final Cut Pro pre-X, that basically takes your image, and puts a crappy version into your waveform monitor. Try it out To try out the Waveform Art filter, download it here, and then copy it to /Library/Application Support/Final Cut Pro System Support/Plugins. It [...]]]></description>
			<content:encoded><![CDATA[<p>The Waveform Art filter is a thoroughly useless piece of code for Final Cut Pro pre-X, that basically takes your image, and puts a crappy version into your waveform monitor.</p>
<p><strong>Try it out</strong></p>
<p>To try out the Waveform Art filter, download it <a href="http://jamessw.com/images/WaveformArt.dmg">here</a>, and then copy it to /Library/Application Support/Final Cut Pro System Support/Plugins. It will appear in the Waveform Art folder in your Video Effects.</p>
<p><strong>What it does</strong></p>
<p>Here&#8217;s the normal waveform for the built in Circle generator-</p>
<p><img class="aligncenter size-medium wp-image-1446" title="Final Cut Pro001" src="http://jamessw.com/wp/wp-content/uploads/2011/08/Final-Cut-Pro001-300x161.png" alt="" width="300" height="161" />And here is the same circle, with the Waveform Art filter applied-</p>
<p><img class="aligncenter size-medium wp-image-1447" title="Final Cut Pro002" src="http://jamessw.com/wp/wp-content/uploads/2011/08/Final-Cut-Pro002-300x161.png" alt="" width="300" height="161" />This works best with large text and simple shapes. Complex images don&#8217;t translate well, as it is a black and white image, and has rather poor resolution (only 256 horizontal lines). Also, you may want to bring up the display brightness to better see the image.</p>
<p><strong>Threshold</strong></p>
<p>You can also change the Threshold parameter to tweak the image. Here&#8217;s a picture of me with the threshold at 60, 90, 120, and 150.</p>
<p><img class="aligncenter size-large wp-image-1452" title="threshold" src="http://jamessw.com/wp/wp-content/uploads/2011/08/threshold-1024x279.png" alt="" width="650" height="177" /></p>
<p><strong>Randomize</strong></p>
<p>There is also a &#8220;Randomize&#8221; parameter, that attempts to distort the image in the canvas, while leaving an image in the waveform monitor. Due to the constraints of how the waveform works, it can&#8217;t be nearly as distorted as I would like. I was hoping to have a jumble of noise that reveals a secret image in the waveform monitor, but I don&#8217;t think it&#8217;s actually possible. The final image also suffers some quality loss. Here&#8217;s the circle with Randomize checked.</p>
<p><img class="aligncenter size-full wp-image-1454" title="Randomize" src="http://jamessw.com/wp/wp-content/uploads/2011/08/Randomize.png" alt="" width="474" height="255" /></p>
<p>Let me know if you actually find a use for it!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/08/waveform-art-filter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Crash Test Trailer wins a Gold Empixx Award</title>
		<link>http://jamessw.com/blog/2011/08/crash-test-trailer-wins-a-gold-empixx-award/</link>
		<comments>http://jamessw.com/blog/2011/08/crash-test-trailer-wins-a-gold-empixx-award/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 16:42:42 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1438</guid>
		<description><![CDATA[I&#8217;m happy to announce that the book trailer I made for “The Outsider’s Guide to the CrashTest Nation” by Rho Mack has won a Gold Empixx award. The Empixx Awards may not be the Emmys, but I&#8217;m still proud to be recognized by other professionals.]]></description>
			<content:encoded><![CDATA[<p><img src="http://jamessw.com/wp/wp-content/uploads/2011/08/EMPixx.GOLD_.Outline-155x300.png" alt="" title="EMPixx GOLD Award" width="155" height="300" class="alignleft size-medium wp-image-1440" />I&#8217;m happy to announce that the book trailer I made for “The Outsider’s Guide to the CrashTest Nation” by Rho Mack has won a Gold Empixx award. </p>
<p><iframe src="http://player.vimeo.com/video/24401053?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0"></iframe></p>
<p>The Empixx Awards may not be the Emmys, but I&#8217;m still proud to be recognized by other professionals.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/08/crash-test-trailer-wins-a-gold-empixx-award/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BackToTheEdit.com &#8211; Non-Editing Essentials for Video Editors</title>
		<link>http://jamessw.com/blog/2011/06/backtotheedit-com-non-editing-essentials-for-video-editors/</link>
		<comments>http://jamessw.com/blog/2011/06/backtotheedit-com-non-editing-essentials-for-video-editors/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 16:30:59 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[The Site]]></category>
		<category><![CDATA[back to the edit]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1431</guid>
		<description><![CDATA[Chances are, your passion for video editing centers around story telling. And, chances are that you find yourself doing less actual story telling than you’d like. One day, I realized that I was working at a company with “Editing” in the company name, that my business card said “Editor”, but I was spending much less [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://backtotheedit.com"><img class="size-full wp-image-1432 alignleft" title="Back to the Edit" src="http://jamessw.com/wp/wp-content/uploads/2011/06/b-arrow-fcp.png" alt="" width="120" height="120" /></a>Chances are, your passion for video editing centers around story  telling. And, chances are that you find yourself doing less actual story  telling than you’d like.</p>
<p>One day, I realized that I was working at a  company with “Editing” in the company name, that my business card said  “Editor”, but I was spending much less than half my time at work  actually editing.</p>
<p>In looking at what I was actually doing as a professional editor, I  realized I had picked up a lot of tricks for getting done with the  menial tasks. These tricks helped me get back to the edit, and get back  to story telling.</p>
<p>I&#8217;ve started to share these tips, tricks, and hacks with others, at my new site, <a href="http://backtotheedit.com">Back to the Edit</a>. Check it out, pass it around, and let me know if there are any parts of your job as an editor that you&#8217;d like to see sped up.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/06/backtotheedit-com-non-editing-essentials-for-video-editors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Demo Reel Up</title>
		<link>http://jamessw.com/blog/2011/06/new-demo-reel-up/</link>
		<comments>http://jamessw.com/blog/2011/06/new-demo-reel-up/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 00:19:35 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[The Site]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1428</guid>
		<description><![CDATA[I have posted my Summer 2011 Reel, with all kinds of fun graphics and shots that show a bit of my aesthetic side. I am happy to be back on the market as a freelancer, and while I&#8217;ve stayed busy so far, I realized a new reel would keep the work flowing in. I&#8217;d love [...]]]></description>
			<content:encoded><![CDATA[<p>I have posted my Summer 2011 Reel, with all kinds of fun graphics and shots that show a bit of my aesthetic side.</p>
<p><iframe src="http://player.vimeo.com/video/24971730?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0"></iframe></p>
<p>I am happy to be back on the market as a freelancer, and while I&#8217;ve stayed busy so far, I realized a new reel would keep the work flowing in. I&#8217;d love to hear what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/06/new-demo-reel-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Book Trailer for &#8220;Crash Test&#8221;</title>
		<link>http://jamessw.com/blog/2011/05/book-trailer-for-crash-test/</link>
		<comments>http://jamessw.com/blog/2011/05/book-trailer-for-crash-test/#comments</comments>
		<pubDate>Mon, 30 May 2011 03:55:41 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1418</guid>
		<description><![CDATA[&#8220;The Outsider&#8217;s Guide to the CrashTest Nation&#8221; is a young adult book for non-readers, by Rho Mack. I worked with the author to capture the playfulness, mystery, and suspense of the novel in a book trailer she could use to market the book, including a Kickstarter campaign to fund the book&#8217;s art. I made heavy [...]]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/24401053?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0"></iframe></p>
<p>&#8220;The Outsider&#8217;s Guide to the CrashTest Nation&#8221; is a young adult book for non-readers, by Rho Mack.</p>
<p>I worked with the author to capture the playfulness, mystery, and suspense of the novel in a book trailer she could use to market the book, including a Kickstarter campaign to fund the book&#8217;s art.</p>
<p>I made heavy use of Motion&#8217;s emitters for the clouds and various rains.</p>
<p>This was done on a tight budget, so I did things like use my iPhone as the mic, and used my laptop as a green screen.<br />
<img class="aligncenter size-medium wp-image-1419" title="x2_492ef7f" src="http://jamessw.com/wp/wp-content/uploads/2011/05/x2_492ef7f-224x300.jpg" alt="" width="224" height="300" /></p>
<p>Shoots that require taking bites of donuts are fine by me.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/05/book-trailer-for-crash-test/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fading to black correctly</title>
		<link>http://jamessw.com/blog/2011/05/fading-to-black-correctly/</link>
		<comments>http://jamessw.com/blog/2011/05/fading-to-black-correctly/#comments</comments>
		<pubDate>Mon, 02 May 2011 16:58:53 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Editing]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1400</guid>
		<description><![CDATA[One of the first things I learned at my first internship was how to properly dissolve with multiple layers of footage. I began to notice incorrect dissolves in the wild, and it still drives me crazy, 5 years later. To me, it&#8217;s a sign of a sloppy edit. There are several signs that a composited [...]]]></description>
			<content:encoded><![CDATA[<p>One of the first things I learned at my first internship was how to properly dissolve with multiple layers of footage. I began to notice incorrect dissolves in the wild, and it still drives me crazy, 5 years later. To me, it&#8217;s a sign of a sloppy edit.</p>
<p>There are several signs that a composited image is being dissolved incorrectly. First, you can see through things that should be solid. Second, white parts of the image seem to lag behind everything else in the race to black, causing a glowing effect.</p>
<p>Here&#8217;s an example- I&#8217;m green screening this lovely woman over her company&#8217;s logo and a beautiful background.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/comp.png"><img class="aligncenter size-medium wp-image-1402" title="comp" src="http://jamessw.com/wp/wp-content/uploads/2011/05/comp-300x168.png" alt="" width="300" height="168" /></a></p>
<p>Here&#8217;s my layers- Background on the bottom, then the logo, and then the woman.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/Layers.png"><img class="aligncenter size-full wp-image-1403" title="Layers" src="http://jamessw.com/wp/wp-content/uploads/2011/05/Layers.png" alt="" width="327" height="270" /></a>It&#8217;s all good- until I need to fade in and out. The sloppy way is to simply put dissolves on each individual track.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/Wrong-Fade.png"><img class="aligncenter size-full wp-image-1404" title="Wrong Fade" src="http://jamessw.com/wp/wp-content/uploads/2011/05/Wrong-Fade.png" alt="" width="397" height="270" /></a>Quick and easy, right? Maybe, but you end up with a fade that looks like this-</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/Wrong-Fade-Comp.png"><img class="aligncenter size-medium wp-image-1405" title="Wrong Fade Comp" src="http://jamessw.com/wp/wp-content/uploads/2011/05/Wrong-Fade-Comp-300x168.png" alt="" width="300" height="168" /></a>Suddenly, the talent has a red moustache from the logo. She has also turned into a ghost, letting the background shine through her. The white in the logo seems to glow abnormally. Sure, this all happens in less than a second- but it is enough to ruin the idea that the talent is actually in front of the background. You can pull the best key in the world- but if you do this, it reveals the fact that it&#8217;s all fake.</p>
<p>So how do you do it correctly? There are two ways. My preferred way is to add slug to a track above the rest, and fade it in or out.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/Right-Fade.png"><img class="aligncenter size-full wp-image-1406" title="Right Fade" src="http://jamessw.com/wp/wp-content/uploads/2011/05/Right-Fade.png" alt="" width="266" height="356" /></a>This keeps everything properly composited, in the correct visual order.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/Right-Fade-Comp.png"><img class="aligncenter size-medium wp-image-1407" title="Right Fade Comp" src="http://jamessw.com/wp/wp-content/uploads/2011/05/Right-Fade-Comp-300x168.png" alt="" width="300" height="168" /></a>Another method is to nest the layers, and then fade the nest in and out. Again, this keeps everything in the proper order.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/05/nest.png"><img class="aligncenter size-full wp-image-1408" title="nest" src="http://jamessw.com/wp/wp-content/uploads/2011/05/nest.png" alt="" width="447" height="91" /></a></p>
<p>Here is a loop of the wrong way to dissolve:</p>
<p><embed src="http://jamessw.com/wp/wp-content/uploads/2011/05/wrong-H.mov" width="480" height="286" loop="true"></embed> </p>
<p>And the correct way to dissolve:<br />
<embed src="http://jamessw.com/wp/wp-content/uploads/2011/05/right-H.mov" width="480" height="286" loop="true"></embed> </p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/05/fading-to-black-correctly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://jamessw.com/wp/wp-content/uploads/2011/05/wrong-H.mov" length="278134" type="video/quicktime" />
<enclosure url="http://jamessw.com/wp/wp-content/uploads/2011/05/right-H.mov" length="250851" type="video/quicktime" />
		</item>
		<item>
		<title>Customize the FCP Help Menu</title>
		<link>http://jamessw.com/blog/2011/04/customize-the-fcp-help-menu/</link>
		<comments>http://jamessw.com/blog/2011/04/customize-the-fcp-help-menu/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 19:29:22 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[FXPlug]]></category>

		<guid isPermaLink="false">http://jamessw.com/?p=1375</guid>
		<description><![CDATA[Say you have an in-house manual that details organization, storage, archival, all that nitty-gritty. Or maybe you have a style guide for a particular client. Or perhaps you&#8217;re the system administrator, and want everyone to have quick access to your contact info in case something goes wrong. Or, you are a prof, and have a [...]]]></description>
			<content:encoded><![CDATA[<p>Say you have an in-house manual that details organization, storage, archival, all that nitty-gritty. Or maybe you have a style guide for a particular client. Or perhaps you&#8217;re the system administrator, and want everyone to have quick access to your contact info in case something goes wrong. Or, you are a prof, and have a syllabus that you want all your</p>
<p>These are all very helpful things to have, but if an editor can&#8217;t find them, what&#8217;s the use? Why not add them to the Final Cut Pro help menu?</p>
<p>Note- this is serious, under the hood stuff. Don&#8217;t do this unless you are very comfortable, and have all necessary permission from your boss, system administrator, professor, and spiritual adviser. Keep a backup of FCP, just in case something goes wrong.</p>
<p>Also, I&#8217;m still on FCP6, so I can&#8217;t guarantee this works in later versions.</p>
<p>To start, copy Final Cut Pro.app from your Applications folder to the Desktop. On your desktop, rename it to &#8220;FCP HACK.app&#8221;. We will work on the hack version, to make sure we don&#8217;t permanently mess anything up.</p>
<p>Right click &#8220;FCP Hack.app&#8221;, and choose &#8220;Show Package Contents&#8221;. This puts you inside of the Final Cut application. Navigate to Contents/Resources/English.lproj/Final Cut Pro Help/. Open up HelpMenu.plist in a text editor- TextEdit will work, but I prefer <a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>.</p>
<p>The Help Menu in Final Cut pulls from this XML file (actually, a PLIST file, which is like XML, but isn&#8217;t actually valid XML). Each menu item is between &#8220;&#8221; and &#8220;&#8221;. To add an entry to the list, simply copy an entire section (including  the starting &#8220;&#8221; and the ending &#8220;&#8221;) and paste it  where you want it to go. Replace the necessary strings, and you&#8217;ll be  good to go.</p>
<p>Here&#8217;s the full entry for the &#8220;Final Cut Pro Support&#8221; menu item, that open up the support web page.</p>
<p>&lt;dict&gt;<br />
&lt;key&gt;Title&lt;/key&gt;<br />
&lt;string&gt;Final Cut Pro Support&lt;/string&gt;<br />
&lt;key&gt;URL&lt;/key&gt;<br />
&lt;string&gt;http://www.apple.com/support/finalcutpro/&lt;/string&gt;<br />
&lt;/dict&gt;</p>
<p>The format is a key, and then a string. Basically, this sets the &#8220;Title&#8221; key to &#8220;Final Cut Pro Support&#8221; and</p>
<p>Here is the full entry for the New Features menu item.</p>
<p>&lt;dict&gt;<br />
&lt;key&gt;Path&lt;/key&gt;<br />
&lt;string&gt;New Features.pdf&lt;/string&gt;<br />
&lt;key&gt;Title&lt;/key&gt;<br />
&lt;string&gt;New Features&lt;/string&gt;<br />
&lt;/dict&gt;</p>
<p>To add a new file, put it in the &#8220;Final Cut Pro Help&#8221; folder. Change the path string to the file name. You can also link to any file or application on the system, by putting the absolute path to the file in the path string. For instance, if the file is on the desktop, you can change the path to &#8220;/Users/username/Desktop/filename.jpg&#8221;. Note that &#8220;~/Desktop/filename.jpg&#8221; will not work. Also, note that if the computer has multiple users, make sure that all the users have permission to view the file.</p>
<p>To put in a divider line, put in the following code- &#8220;&#8221;.</p>
<p>Once you are done editing the file, save it, and launch FCP Hack.app. Test out your new menu options. Here is my menu, with links to my Web site, and to open Final Cut Server.</p>
<p><a href="http://jamessw.com/wp/wp-content/uploads/2011/03/Final-Cut-Pro001.png"><img class="aligncenter size-full wp-image-1378" title="Final Cut Pro001" src="http://jamessw.com/wp/wp-content/uploads/2011/03/Final-Cut-Pro001.png" alt="" width="350" height="274" /></a></p>
<p>If everything is working as it should, you can rename the application to Final Cut Pro.app, and place it in the Applications folder. I would suggest backing up the original program, just in case anything goes wrong.</p>
<p>A side note- I don&#8217;t know if this hack would survive an upgrade, but my guess is that it probably won&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamessw.com/blog/2011/04/customize-the-fcp-help-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

