<?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: Using timecode in Excel</title>
	<atom:link href="http://www.talino.org/blog/using-timecode-in-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.talino.org/blog/using-timecode-in-excel/</link>
	<description>Permanently under construction</description>
	<lastBuildDate>Wed, 30 Jun 2010 21:33:34 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joe Schmoe</title>
		<link>http://www.talino.org/blog/using-timecode-in-excel/comment-page-1/#comment-15655</link>
		<dc:creator>Joe Schmoe</dc:creator>
		<pubDate>Thu, 17 Jun 2010 19:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.talino.org/?p=213#comment-15655</guid>
		<description>Yet another comment from my earliier post.

I found what appears to be a rounding error in the formula for converting time to timecode.  It could be that the error is introduced because the routine is a base 29.97 fps and I&#039;m using 30 fps.  Whatever the reason, when a number on the hour such as 12:00:00 AM was used the formula would convert it to 11:98:99:00 during the conversion.  This wreaked all sorts of havoc every few rows and screwed up the frame count but only on even time stamps such as my example.  The solution I found which looks like it&#039;s going to work is to change the formula in the formula bar to:
=timetoTC(A2+0.00000001) rather than =timetoTC(A2).

If you&#039;re having this problem try that.  Thanks again to the site owner and the person who created this routine. Hopefully my responses here will help pay back their efforts

Schmoe</description>
		<content:encoded><![CDATA[<p>Yet another comment from my earliier post.</p>
<p>I found what appears to be a rounding error in the formula for converting time to timecode.  It could be that the error is introduced because the routine is a base 29.97 fps and I&#8217;m using 30 fps.  Whatever the reason, when a number on the hour such as 12:00:00 AM was used the formula would convert it to 11:98:99:00 during the conversion.  This wreaked all sorts of havoc every few rows and screwed up the frame count but only on even time stamps such as my example.  The solution I found which looks like it&#8217;s going to work is to change the formula in the formula bar to:<br />
=timetoTC(A2+0.00000001) rather than =timetoTC(A2).</p>
<p>If you&#8217;re having this problem try that.  Thanks again to the site owner and the person who created this routine. Hopefully my responses here will help pay back their efforts</p>
<p>Schmoe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Schmoe</title>
		<link>http://www.talino.org/blog/using-timecode-in-excel/comment-page-1/#comment-15619</link>
		<dc:creator>Joe Schmoe</dc:creator>
		<pubDate>Thu, 17 Jun 2010 07:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.talino.org/?p=213#comment-15619</guid>
		<description>Just wanted to come back and share a few things for anyone who may need the information.  I&#039;m using Excel 2003 on XP.  

I had a problem where I had to sync a device with a time stamp to a camera running TC at 30fps.  The format of the device is hh/mm/ss.  The time code is hh/mm/ss/ff.  The device time is needed to do an animation in Adobe After Effects that will sync with the camera TC.  The problem was that AE needed frames (eg. Cam TC 00:00:01:00 = 30 frames) but when the time stamp data (00:00:01 = 1 second) was used the seconds were interpreted as frames.  The above example would end up on the timeline as frame one rather than thirty.  With me?  I&#039;m plotting thousands of frames and can&#039;t manually type in frames into the time stamp in Excel.  But Excel won&#039;t allow (or I don&#039;t know how) frames in its time formats.  Here&#039;s how I solved the problem:

I loaded the macro per instruction and hit ctrl t. I also made sure it was activated in Tools&gt;Add Ins.

I made 3 columns.

Col A -- First you need to Format&gt;Cells&gt;Time&gt; 1/35/55 AM/PM (h/mm/ss AM/PM)  The Macro understands and drops the AM/PM during conversion

Col B -- Second you need to Format&gt;Cells&gt;Custom&gt;00\:00\:00\:00 (or drop frame)

Col C -- Third you need to Format&gt;Cells&gt;Number&gt;Number w/no decimal places

Paste your time stamp info in Col A.  I am using 12 hour based with AM/PM.  

Select Cell B1 and goto Insert&gt;Function&gt;(select all)&gt;timetoTC&gt;select A1 Column cell from helper and that should return the time stamp with frames now added to the end as 00.  (eg 20:57:55:00)

Select Cell C1 and goto Insert&gt;Function&gt;(select all) TCtoframes&gt;select
B1 Column cell from helper then fame rate and it should return 2264250

That should work - if it doesn&#039;t check to make sure you&#039;re formatting the columns properly.  That&#039;s the most important thing and it may take a while for you to figure it out for your own project.  Just noodle it till it works.  Nice little plug in saving me lots of effort.  Thanks

Schmoe</description>
		<content:encoded><![CDATA[<p>Just wanted to come back and share a few things for anyone who may need the information.  I&#8217;m using Excel 2003 on XP.  </p>
<p>I had a problem where I had to sync a device with a time stamp to a camera running TC at 30fps.  The format of the device is hh/mm/ss.  The time code is hh/mm/ss/ff.  The device time is needed to do an animation in Adobe After Effects that will sync with the camera TC.  The problem was that AE needed frames (eg. Cam TC 00:00:01:00 = 30 frames) but when the time stamp data (00:00:01 = 1 second) was used the seconds were interpreted as frames.  The above example would end up on the timeline as frame one rather than thirty.  With me?  I&#8217;m plotting thousands of frames and can&#8217;t manually type in frames into the time stamp in Excel.  But Excel won&#8217;t allow (or I don&#8217;t know how) frames in its time formats.  Here&#8217;s how I solved the problem:</p>
<p>I loaded the macro per instruction and hit ctrl t. I also made sure it was activated in Tools&gt;Add Ins.</p>
<p>I made 3 columns.</p>
<p>Col A &#8212; First you need to Format&gt;Cells&gt;Time&gt; 1/35/55 AM/PM (h/mm/ss AM/PM)  The Macro understands and drops the AM/PM during conversion</p>
<p>Col B &#8212; Second you need to Format&gt;Cells&gt;Custom&gt;00\:00\:00\:00 (or drop frame)</p>
<p>Col C &#8212; Third you need to Format&gt;Cells&gt;Number&gt;Number w/no decimal places</p>
<p>Paste your time stamp info in Col A.  I am using 12 hour based with AM/PM.  </p>
<p>Select Cell B1 and goto Insert&gt;Function&gt;(select all)&gt;timetoTC&gt;select A1 Column cell from helper and that should return the time stamp with frames now added to the end as 00.  (eg 20:57:55:00)</p>
<p>Select Cell C1 and goto Insert&gt;Function&gt;(select all) TCtoframes&gt;select<br />
B1 Column cell from helper then fame rate and it should return 2264250</p>
<p>That should work &#8211; if it doesn&#8217;t check to make sure you&#8217;re formatting the columns properly.  That&#8217;s the most important thing and it may take a while for you to figure it out for your own project.  Just noodle it till it works.  Nice little plug in saving me lots of effort.  Thanks</p>
<p>Schmoe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Schmoe</title>
		<link>http://www.talino.org/blog/using-timecode-in-excel/comment-page-1/#comment-15612</link>
		<dc:creator>Joe Schmoe</dc:creator>
		<pubDate>Wed, 16 Jun 2010 18:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.talino.org/?p=213#comment-15612</guid>
		<description>FYI-

If you haven&#039;t tried it go to Tools&gt;Add-ins and check the Tc box.

I missed that part but eventually figured it out.

JM</description>
		<content:encoded><![CDATA[<p>FYI-</p>
<p>If you haven&#8217;t tried it go to Tools&gt;Add-ins and check the Tc box.</p>
<p>I missed that part but eventually figured it out.</p>
<p>JM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeke</title>
		<link>http://www.talino.org/blog/using-timecode-in-excel/comment-page-1/#comment-15411</link>
		<dc:creator>Zeke</dc:creator>
		<pubDate>Fri, 21 May 2010 17:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.talino.org/?p=213#comment-15411</guid>
		<description>As some people have indicated above, tc.xla will not work with Excel 2008 (as far as I can tell).

Also, the formula instructions indicate semicolons where a lot of users will actually use commas.  This is because a comma is a decimal in many countries, so the semicolon is used there instead.  If you&#039;re in the US you probably want to use commas.

E.g. &quot;=TCplus(TC1;TC2;fps)&quot; should actually be &quot;=TCplus(TC1,TC2,fps)&quot;

The formula I can&#039;t get to work is TCtoText.  I input &quot;=TCtoText(1154325)&quot; and should get &quot;01:15:43:25&quot; back as a string but I always get &quot;0&quot;. 

If anyone has any advice on that function please post here. 

Here&#039;s a link for the google-translated instruction page.
http://translate.google.com/translate?js=y&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=1&amp;eotf=1&amp;u=http%3A%2F%2Fwww.belle-nuit.com%2Ftimecode%2Ff.html&amp;sl=fr&amp;tl=en</description>
		<content:encoded><![CDATA[<p>As some people have indicated above, tc.xla will not work with Excel 2008 (as far as I can tell).</p>
<p>Also, the formula instructions indicate semicolons where a lot of users will actually use commas.  This is because a comma is a decimal in many countries, so the semicolon is used there instead.  If you&#8217;re in the US you probably want to use commas.</p>
<p>E.g. &#8220;=TCplus(TC1;TC2;fps)&#8221; should actually be &#8220;=TCplus(TC1,TC2,fps)&#8221;</p>
<p>The formula I can&#8217;t get to work is TCtoText.  I input &#8220;=TCtoText(1154325)&#8221; and should get &#8220;01:15:43:25&#8243; back as a string but I always get &#8220;0&#8243;. </p>
<p>If anyone has any advice on that function please post here. </p>
<p>Here&#8217;s a link for the google-translated instruction page.<br />
<a href="http://translate.google.com/translate?js=y&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=1&amp;eotf=1&amp;u=http%3A%2F%2Fwww.belle-nuit.com%2Ftimecode%2Ff.html&amp;sl=fr&amp;tl=en" rel="nofollow">http://translate.google.com/translate?js=y&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=1&amp;eotf=1&amp;u=http%3A%2F%2Fwww.belle-nuit.com%2Ftimecode%2Ff.html&amp;sl=fr&amp;tl=en</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tal</title>
		<link>http://www.talino.org/blog/using-timecode-in-excel/comment-page-1/#comment-15405</link>
		<dc:creator>Tal</dc:creator>
		<pubDate>Fri, 21 May 2010 08:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.talino.org/?p=213#comment-15405</guid>
		<description>Please read Update II in the post body. I cannot offer support for this plugin, nor can I do much else except hope that it works on your machine.</description>
		<content:encoded><![CDATA[<p>Please read Update II in the post body. I cannot offer support for this plugin, nor can I do much else except hope that it works on your machine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
