<?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>InqScribe News</title>
	<atom:link href="http://blogs.inquirium.net/inqscribe/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.inquirium.net/inqscribe</link>
	<description>News and Notes related to Digital Media Transcription, Analysis, and Captioning</description>
	<lastBuildDate>Wed, 16 Dec 2009 20:20:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Workaround for Final Cut Pro 7 Importing Bug</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/12/workaround-for-final-cut-pro-7-importing-bug/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/12/workaround-for-final-cut-pro-7-importing-bug/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 20:20:15 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Subtitles]]></category>
		<category><![CDATA[Final Cut Pro]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=48</guid>
		<description><![CDATA[If you&#8217;re using Final Cut Pro 7 and importing InqScribe-generated FCP XML files, you&#8217;re probably pulling your hair out. As of FCP7, any imported subtitles beyond the two minute mark show up with a duration of only one frame.
The problem is twofold. First, InqScribe is setting incorrect values for the in and out points for [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using Final Cut Pro 7 and importing InqScribe-generated FCP XML files, you&#8217;re probably pulling your hair out. As of FCP7, any imported subtitles beyond the two minute mark show up with a duration of only one frame.</p>
<p>The problem is twofold. First, InqScribe is setting incorrect values for the in and out points for each generated subtitle. In prior versions of FCP, these values were essentially ignored on import, because in and out points for a static subtitle don&#8217;t really mean that much. (The start and end points for the subtitle, which determine where the subtitle goes in the sequence, were and are correct.)</p>
<p>Unfortunately, FCP7 is interpreting those values differently, and any subtitle with an in point greater than the subtitle&#8217;s stated duration ends up with a frame length of 1. Since InqScribe was setting every subtitle&#8217;s duration to 3600 frames (because this value shouldn&#8217;t really matter: effective duration of the subtitle is based on the start and end values), most users will find that subtitles that start at the two minute mark or later are affected.</p>
<p>We&#8217;re working on a fix for the next beta release. In the meantime, there is a workaround.</p>
<p>Here&#8217;s an excerpt from an InqScribe-generated FCP XML file:</p>
<pre class="brush: xml;">&lt;generatoritem id=&quot;Text&quot;&gt;
    &lt;name&gt;Text&lt;/name&gt;
    &lt;duration&gt;3600&lt;/duration&gt;
    &lt;rate&gt;
        &lt;ntsc&gt;TRUE&lt;/ntsc&gt;
        &lt;timebase&gt;30&lt;/timebase&gt;
    &lt;/rate&gt;
    &lt;in&gt;7540&lt;/in&gt;
    &lt;out&gt;7610&lt;/out&gt;
    &lt;start&gt;7540&lt;/start&gt;
    &lt;end&gt;7610&lt;/end&gt;</pre>
<p>Note that InqScribe sets the duration to 3600 (regardless of the actual duration, which is based on the start and end values). InqScribe also sets the in and out points to the start and end values. The problem is that in and out values should technically never be greater than the duration.</p>
<p>So the fix is to change every instance of in and out to this:</p>
<pre class="brush: xml;">&lt;in&gt;100&lt;/in&gt;
&lt;out&gt;3600&lt;/out&gt;</pre>
<p>With this change, in and out stay within duration&#8217;s range, and FCP7 won&#8217;t clip the resulting subtitle.</p>
<p>To make this change easily, use a tool that supports regular expressions to find all instances of the in and out tags. Here&#8217;s a solution that uses sed, which comes installed on OS X.</p>
<p>1. Export the FCP XML file from InqScribe as usual (let&#8217;s say it&#8217;s called export.xml).<br />
2. In the Terminal, navigate to the directory containing export.xml, and issue this command (which is one long line, make sure to copy the whole thing):</p>
<pre class="brush: plain;">sed -e 's_\(&lt;in&gt;\)[0-9]*\(&lt;/in&gt;\)_\1100\2_g' -e 's_\(&lt;out&gt;\)[0-9]*\(&lt;/out&gt;\)_\13600\2_g' &lt; export.xml &gt; export_fixed.xml</pre>
<p>3. Import the resulting export_fixed.xml into FCP7.</p>
<p>If you want to dig into sed so you understand what that command is doing, here&#8217;s a solid <a href="http://www.grymoire.com/Unix/Sed.html">sed tutorial</a>. It&#8217;s a very powerful tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/12/workaround-for-final-cut-pro-7-importing-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Tweeting</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/11/were-tweeting/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/11/were-tweeting/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 20:22:20 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=42</guid>
		<description><![CDATA[InqScribe is now on Twitter. We think this will be a great way to share quick tips and information about using InqScribe and related media tools. You can track our tweets on the sidebar of this blog, or follow InqScribe on Twitter.
]]></description>
			<content:encoded><![CDATA[<p>InqScribe is now on Twitter. We think this will be a great way to share quick tips and information about using InqScribe and related media tools. You can track our tweets on the sidebar of this blog, or follow <a href="http://www.twitter.com/inqscribe">InqScribe on Twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/11/were-tweeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dive into Video</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/10/dive-into-video/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/10/dive-into-video/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 17:29:09 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[firefogg]]></category>
		<category><![CDATA[h.264]]></category>
		<category><![CDATA[handbrake]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[ogg]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=38</guid>
		<description><![CDATA[If you&#8217;re at all interested in where video and audio for the web is going, this chapter by Mark Pilgrim is required reading. Mark does a great job providing background on the core cross-platform codecs that are in use today (with the cross-platform bit ruling out WMV) and talks about how HTML5 will offer native [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re at all interested in where video and audio for the web is going, <a href="http://diveintohtml5.org/video.html">this chapter by Mark Pilgrim</a> is required reading. Mark does a great job providing background on the core cross-platform codecs that are in use today (with the cross-platform bit ruling out WMV) and talks about how HTML5 will offer native support for video playback.</p>
<p>His focus is primarily on h.264 and Ogg video, since offering video in those two formats will cover all modern browsers. He also describes methods and tools you can use to encode your videos in those formats (including <a href="http://firefogg.org/index.html">Firefogg</a>, which was new to me, and <a href="http://v2v.cc/~j/ffmpeg2theora/">FFMPEG2Theora</a> for Ogg, and <a href="http://handbrake.fr/">Handbrake</a> for h.264).</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/10/dive-into-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InqScribe 2.0.5 is compatible with Snow Leopard</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/09/inqscribe-205-is-compatible-with-snow-leopard/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/09/inqscribe-205-is-compatible-with-snow-leopard/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 06:11:53 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=34</guid>
		<description><![CDATA[While we do have a new version of InqScribe expected soon, the current version, 2.0.5, works fine with the new Snow Leopard Mac OS (10.6).
In general, if you do have problems with InqScribe, please report it to us using the InqScribe Help menu&#8217;s &#8220;Report a Bug&#8230;&#8221; feature.  This provides us with a little more information [...]]]></description>
			<content:encoded><![CDATA[<p>While we do have a new version of InqScribe expected soon, the current version, 2.0.5, works fine with the new Snow Leopard Mac OS (10.6).</p>
<p>In general, if you do have problems with InqScribe, please report it to us using the InqScribe<span id="dlgGrid"><span class="snippetText"> Help menu&#8217;s &#8220;Report a Bug&#8230;&#8221; feature.  This provides us with a little more information to help us more quickly troubleshoot the problem.<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/09/inqscribe-205-is-compatible-with-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TIP: How can I convert my &#8220;[00:01:23.29]&#8221; timecodes to &#8220;00:01:23.29&#8243; (remove brackets)?</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-can-i-convert-my-timecodes/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-can-i-convert-my-timecodes/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 20:46:54 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bracket]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[time code]]></category>
		<category><![CDATA[timecode]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=27</guid>
		<description><![CDATA[I have an existing InqScribe transcript that uses bracketed timecodes: [00:01:23.29]
I want to use unbracketed timecodes: 00:01:23.29
&#8212;
Here&#8217;s how you can do the conversion:
1. Open the existing transcript in InqScribe.
2. Select &#8220;Transcript-&#62;Transcript Settings&#8230;&#8221; from the menu bar.
3. Under the &#8220;Inserted Time Code Format:&#8221; select &#8220;00:01:23.29&#8243; from the popup menu.
4. Check the &#8220;Recognize Unbracketed Time Codes&#8221; checkbox.
5. [...]]]></description>
			<content:encoded><![CDATA[<p>I have an existing InqScribe transcript that uses bracketed timecodes: [00:01:23.29]</p>
<p>I want to use unbracketed timecodes: 00:01:23.29</p>
<p>&#8212;</p>
<p>Here&#8217;s how you can do the conversion:</p>
<p>1. Open the existing transcript in InqScribe.</p>
<p>2. Select &#8220;Transcript-&gt;Transcript Settings&#8230;&#8221; from the menu bar.</p>
<p>3. Under the &#8220;Inserted Time Code Format:&#8221; select &#8220;00:01:23.29&#8243; from the popup menu.</p>
<p>4. Check the &#8220;Recognize Unbracketed Time Codes&#8221; checkbox.</p>
<p>5. Click &#8220;OK&#8221; to close the window.</p>
<p>6. Select &#8220;Transcript-&gt;Adjust Time Codes&#8230;&#8221; from the menu bar.</p>
<p>7. Leave the &#8220;Adjustment:&#8221; field blank, and click &#8220;Adjust.&#8221;  This will reformat all of your time codes to the unbracketed format.</p>
<p>&#8212;</p>
<p>To change ALL of your future transcripts to use the unbracketed time codes&#8230;</p>
<p><strong>&#8230;On a Mac:</strong></p>
<p>1. Select &#8220;InqScribe-&gt;Preferences&#8230;&#8221; from the menu bar.</p>
<p>2. Click on the &#8220;New Document&#8221; tab at the top of the &#8220;InqScribe Preferences&#8221; window.</p>
<p>3. Under the &#8220;Inserted Time Code Format:&#8221; select &#8220;00:01:23.29&#8243; from the popup menu.</p>
<p>4. Check the &#8220;Recognize Unbracketed Time Codes&#8221; checkbox.</p>
<p><strong>&#8230;On Windows:</strong></p>
<p>1. Select &#8220;Edit-&gt;Options&#8230;&#8221; from the menu bar.</p>
<p>2. Click on the &#8220;New Document&#8221; tab at the top of the &#8220;InqScribe Preferences&#8221; window.</p>
<p>3. Under the &#8220;Inserted Time Code Format:&#8221; select &#8220;00:01:23.29&#8243; from the popup menu.</p>
<p>4. Check the &#8220;Recognize Unbracketed Time Codes&#8221; checkbox.</p>
<p>By the way, there are a number of other formats that you can use as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-can-i-convert-my-timecodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TIP: How to bold timecodes in Microsoft Word</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-to-bold-timecodes-in-microsoft-word/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-to-bold-timecodes-in-microsoft-word/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 19:54:57 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bold]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[timecode]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=24</guid>
		<description><![CDATA[InqScribe currently does not support bold text.  However, you can use Microsoft Word&#8217;s &#8220;Find and Replace&#8221; feature to bold text.  Here&#8217;s how you can do that:
1. Export your transcript to Microsoft Word.  (You can just cut and paste.)
2. Select &#8220;Edit-&#62;Replace&#8230;&#8221;.
3. Click on the triangle next to the &#8220;Replace All&#8221; button to reveal the advanced options.
4. [...]]]></description>
			<content:encoded><![CDATA[<p>InqScribe currently does not support bold text.  However, you can use Microsoft Word&#8217;s &#8220;Find and Replace&#8221; feature to bold text.  Here&#8217;s how you can do that:</p>
<p>1. Export your transcript to Microsoft Word.  (You can just cut and paste.)</p>
<p>2. Select &#8220;Edit-&gt;Replace&#8230;&#8221;.</p>
<p>3. Click on the triangle next to the &#8220;Replace All&#8221; button to reveal the advanced options.</p>
<p>4. Check the &#8220;Use wildcards&#8221; option.</p>
<p>5. Under &#8220;Find what:&#8221; enter this:</p>
<p>[^#^#:^#^#:^#^#.^#^#]</p>
<p>NOTE this assumes that you&#8217;re using the default timecode format.  If you&#8217;re using another timecode format, just format the colons and periods accordingly.  Each &#8220;^#&#8221; matches a digit.  For example, if your timecode looks like &#8220;&lt;00:00:00.00&gt;&#8221; use &#8220;&lt;^#^#:^#^#:^#^#.^#^#&gt;&#8221;.</p>
<p>6. Click in the &#8220;Replace with:&#8221; field.</p>
<p>7. From the popup menu at the bottom of the window called &#8220;Format&#8221; select &#8220;Font&#8230;&#8221; and then click on &#8220;Bold&#8221;, then click &#8220;OK&#8221;.  The &#8220;Replace with:&#8221; field should say &#8220;Format: Font:Bold&#8221; underneath it.</p>
<p>8. Click on &#8220;Find Next&#8221; to make sure it works &#8212; does Word find the first timecode?  If so, then try clicking &#8220;Replace&#8221; to see if it bolds it.  If it does, then you can use &#8220;Replace All&#8221; to bold all of the timecodes.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/08/tip-how-to-bold-timecodes-in-microsoft-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to InqScribe News</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/04/welcome-to-inqscribe-news/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/04/welcome-to-inqscribe-news/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 23:38:07 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=19</guid>
		<description><![CDATA[Welcome to the new InqScribe News! We&#8217;ve tidied up a bit and moved over to a shiny new blogging engine.
The older InqScribe News site is still available, but we&#8217;ll be posting new information here, including notes on development, bug reports and workarounds, and tips for getting the most out of InqScribe. We hope you&#8217;ll follow [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the new InqScribe News! We&#8217;ve tidied up a bit and moved over to a shiny new blogging engine.</p>
<p>The <a href="http://www.inqscribe.com/news/">older InqScribe News site</a> is still available, but we&#8217;ll be posting new information here, including notes on development, bug reports and workarounds, and tips for getting the most out of <a href="http://www.inqscribe.com/">InqScribe</a>. We hope you&#8217;ll follow along.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/04/welcome-to-inqscribe-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exporting NTSC DF to Final Cut Pro</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/04/exporting-ntsc-df-to-final-cut-pro/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/04/exporting-ntsc-df-to-final-cut-pro/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 07:23:32 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Subtitles]]></category>
		<category><![CDATA[Final Cut Pro]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=11</guid>
		<description><![CDATA[There&#8217;s a bug in InqScribe 2.0.5 that affects FCP XML exporting. Currently the bug only affects exports that use XML templates that are based on NTSC DF.
The bug is that InqScribe is counting the dropped frames when it converts from the timecode to a single frame count number. As a result, the converted time codes [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a bug in InqScribe 2.0.5 that affects FCP XML exporting. Currently the bug only affects exports that use XML templates that are based on NTSC DF.</p>
<p>The bug is that InqScribe is counting the dropped frames when it converts from the timecode to a single frame count number. As a result, the converted time codes will drift farther and farther from where they should be, the later in the movie you go.</p>
<p><span style="text-decoration: line-through;">There is a workaround that you can use until we fix the problem</span>.</p>
<p><strong>Update</strong>: turns out the workaround didn&#8217;t work. Drat. But the good news is that we&#8217;ve fixed the underlying problem in InqScribe 2.1. A <a href="http://www.inqscribe.com/changes_beta.html">public beta</a> can be found here.</p>
<p><span id="more-11"></span></p>
<p>This fix takes advantage of the fact that the conversion from non-DF time code to a frame number works fine in InqScribe, and actually lines up with what the DF value should be. The tricky part is getting FCP to recognize the imported XML as DF.</p>
<p>It goes like this:</p>
<p>1. Export from FCP a non-DF XML template for InqScribe.</p>
<p>2. Export FCP XML from InqScribe using the template.</p>
<p>Since InqScribe notices that the template is non-DF, it&#8217;ll convert based on that time code format, which we know will actually line up with what you want.</p>
<p>3. Open the exported XML file in a text editor and do a global search and replace as follows.</p>
<p>FCP XML notes time code format like this:</p>
<p><code>&lt;rate&gt;<br />
  &lt;ntsc&gt;FALSE&lt;/ntsc&gt;<br />
  &lt;timebase&gt;30&lt;/timebase&gt;<br />
&lt;/rate&gt;</code></p>
<p>If the value for &lt;ntsc&gt; is TRUE, it uses DF. If it&#8217;s FALSE, it uses non-DF.</p>
<p>So, if you replace &#8220;&lt;ntsc&gt;FALSE&#8221; with &#8220;&lt;ntsc&gt;TRUE&#8221;, you&#8217;re essentially converting the XML file to DF, which what you want. Remember to do a replace all &#8212; there will be tons of &lt;rate&gt; bundles throughout the XML file.</p>
<p>4. Import the modified XML into your project.</p>
<p>If all goes well, FCP will decide this is a proper DF import, <em>and</em> you&#8217;ll see all the time codes line up.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/04/exporting-ntsc-df-to-final-cut-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InqScribe and LTC</title>
		<link>http://blogs.inquirium.net/inqscribe/2009/04/inqscribe-and-ltc/</link>
		<comments>http://blogs.inquirium.net/inqscribe/2009/04/inqscribe-and-ltc/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 07:01:55 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[LTC]]></category>

		<guid isPermaLink="false">http://blogs.inquirium.net/inqscribe/?p=3</guid>
		<description><![CDATA[We&#8217;ve added a knowledge base entry discussing the challenges inherent in decoding linear timecode (LTC). In short: InqScribe can&#8217;t do it, we&#8217;d like to support it, but it&#8217;s really hard to do the analog-to-digital conversion. We&#8217;ll track alternative solutions on the KB page as we find them.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve added a <a href="http://nw.inquirium.org/kb/inqscribe:media_ltc">knowledge base entry discussing the challenges inherent in decoding linear timecode</a> (LTC). In short: InqScribe can&#8217;t do it, we&#8217;d like to support it, but it&#8217;s really hard to do the analog-to-digital conversion. We&#8217;ll track alternative solutions on the KB page as we find them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.inquirium.net/inqscribe/2009/04/inqscribe-and-ltc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
