<?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>Fast Video Indexer</title>
	<atom:link href="http://www.fastvideoindexer.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fastvideoindexer.com/blog</link>
	<description>How to capture video frames</description>
	<lastBuildDate>Wed, 07 Jul 2010 13:41:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Improve your games input latency using video frame capture</title>
		<link>http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/</link>
		<comments>http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:41:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[frame capture]]></category>
		<category><![CDATA[screen capture]]></category>
		<category><![CDATA[video frame capture]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=41</guid>
		<description><![CDATA[



Image by libraryman via Flickr



So here is some info that should be useful if you are creating or thinking about creating video games&#8230;
Action games are coming into fashion again. Game consoles have their download services where action games are the top sellers and the new mobile devices like iPhone and Android have opened up a [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 230px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/43017881@N00/4308279996" onclick="urchinTracker('/outgoing/www.flickr.com/photos/43017881_N00/4308279996?referer=');"><img title="Video Game Consoles Through the Decades" src="http://farm5.static.flickr.com/4006/4308279996_4b929832dd_m.jpg" alt="Video Game Consoles Through the Decades" width="220" height="240" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/43017881@N00/4308279996" onclick="urchinTracker('/outgoing/www.flickr.com/photos/43017881_N00/4308279996?referer=');">libraryman</a> via Flickr</dd>
</dl>
</div>
</div>
<p>So here is some info that should be useful if you are creating or thinking about creating video games&#8230;</p>
<p>Action games are coming into fashion again. Game consoles have their download services where action games are the top sellers and the new mobile devices like iPhone and Android have opened up a whole new market for small and quick action games.</p>
<p><em>In action games you need your game to respond to input as quick as possible. This is Key!<br />
</em></p>
<p>Creating a fast responding action game can be a real challenge, and knowing just how long latency your game has isn&#8217;t trivial, even if you created it.</p>
<p>For this discussion I’ll use the term <strong>latency</strong> for the time between when you press the fire button in a game to when you see your player actually firing in the game.</p>
<p>Latency, or network latency, is often used for network game and there you see extra latency caused by your connection to other players over internet. Let&#8217;s just save that whole discussion for another day.</p>
<p>When something happens on your computer screen it takes a few mili-seconds before you will react and press a button in response on your game control. This time is up to your reaction time, this is the time that you as a player has control over.</p>
<p>So what happens when a button is pressed? The game will need to read the input, feed that input into the game and do some calculation as to what should happen as a result of that button press. This whole sequence is called the games update loop. The player has no control over this time, its up to you as a game developer to make this time as short as possible.</p>
<p>The game then needs to render to the screen, the graphic card needs to output it to the display.  Let’s call this the render update. This can also take more than one frame depending on your games rendering architecture.</p>
<p>Finally the monitor needs to show the graphics on screen. Ideally you want this to happen as quickly as possible. This part is up to the hardware vendor but as a game developer or a gamer you should be aware.</p>
<p>Your monitor has a response time and this is the time it takes for something to appear on the screen. Some monitors, made for watching television, will apply filters to make the picture look better. These filters are applied over several frames ie output is delayed and all games will have longer latency. For the best gaming experience you want a monitor with a small response time and no filtering or filter’s you can turn off.</p>
<blockquote><p>As a game developer you need to focus on the game update and rendering loop.</p></blockquote>
<p>To measure how many frames latency your game has get a video camera that is capable of capturing at 60 fps. Film the game screen with you holding the control in front of the screen. Record as you click the button, preferable with some debug rendering enabled so that you render something on screen that you can not miss and that you can compare with something in the actual game.</p>
<p>If you do not want to buy a fast video camera you can do a poor mans version. Write bytes straight to the front buffer memory at the same time as you read the input device. Then just record a video screen capture. The written bytes will appear as flicker on the screen but that is all you really need. This approach will work on consoles but on some platforms you simply don&#8217;t have that low level access to the front buffer.</p>
<p>Use video capture software like Fast video indexer to extract frame by frame from when you click the button to when you see the result. Count the number of frames and there is your games latency in 60 fps frames ie 16,67 ms frames.</p>
<p><strong>Here are some general tips for improving your games latency. </strong></p>
<p>Peek input buffers as close to their use as possible. If your game uses DirectInput, xinput or any other buffered input device, try to read the input buffer as close to where the data is used as possible.</p>
<p>Many game loops start reading the input at the beginning of the frame independent of the game state as reading devices is game state independent. If your loop does anything between input update and input response, key presses during that time will have one frame of extra delay.</p>
<p>Run at as high fps as possible. If you can run your game at 60 fps instead of 30 fps the latency will be mush lower. If your game is GPU bound you still want your game loop running quicker. Consider separating the rendering and update loop.</p>
<p>Don&#8217;t introduce extra frame latency. This might seem obvious, but it is quite easy to introduce frames of latency when optimizing for parallelism, blending animations, etc Analyze the flow from an input point of view and verify your result with screen captures.</p>
<p>Low input latency can be the difference between a fun or a frustrating game experience, don’t forget or ignore it.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/" onclick="urchinTracker('/outgoing/www.zemanta.com/?referer=');"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=db3dd446-44b4-40c1-bb73-bda32acf671c" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture&amp;desc=%0D%0AImage%20by%20libraryman%20via%20Flickr%0D%0A%0D%0ASo%20here%20is%20some%20info%20that%20should%20be%20useful%20if%20you%20are%20creating%20or%20thinking%20about%20creating%20video%20games...%0D%0A%0D%0AAction%20games%20are%20coming%20into%20fashion%20again.%20Game%20consoles%20have%20their%20download%20services%20where%20action%20games%20are%20the%20top%20sellers%20and%20the%20new%20mobile%20devices%20lik" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture_amp_desc=_0D_0AImage_20by_20libraryman_20via_20Flickr_0D_0A_0D_0ASo_20here_20is_20some_20info_20that_20should_20be_20useful_20if_20you_20are_20creating_20or_20thinking_20about_20creating_20video_20games..._0D_0A_0D_0AAction_20games_20are_20coming_20into_20fashion_20again._20Game_20consoles_20have_20their_20download_20services_20where_20action_20games_20are_20the_20top_20sellers_20and_20the_20new_20mobile_20devices_20lik&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;bm_description=Improve+your+games+input+latency+using+video+frame+capture&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_bm_description=Improve+your+games+input+latency+using+video+frame+capture_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;title=Improve+your+games+input+latency+using+video+frame+capture" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/_amp_title=Improve+your+games+input+latency+using+video+frame+capture&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Improve+your+games+input+latency+using+video+frame+capture+-+http://b2l.me/9gaqz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Improve+your+games+input+latency+using+video+frame+capture+-+http_//b2l.me/9gaqz_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/games/improve-your-games-input-latency-using-video-frame-capture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The next version of Fast Video Indexer</title>
		<link>http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/</link>
		<comments>http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 06:43:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=37</guid>
		<description><![CDATA[I have finally started work on the next major update of the Fast video indexer software. For the last 2 years I have only done minor changes to the software, more in the line of bugfixes and I have implemented a few ideas from users. This has been good i think as I have been [...]]]></description>
			<content:encoded><![CDATA[<p>I have finally started work on the next major update of the Fast video indexer software. For the last 2 years I have only done minor changes to the software, more in the line of bugfixes and I have implemented a few ideas from users. This has been good i think as I have been able to improve the core of the program, the actual video indexing part. But, so far I have gotten two major complains that I hope to fix with the next major update. </p>
<p>First of all people people are complaining about the user interface so it needs improvements. My idea at this point is to rewrite the user interface in c# and WPF but still use the tested video index engine that is written in c++. I will continue to use direct show for video frame extraction as it is the video api that has support for most video formats.</p>
<p>The other big problem i have is with crashing/buggy codecs that is causing the program to crash. To solve this I intend to launch the indexing of each video in its separate process, if that crashes at least it minimizes the risk of crashing indexing of other videos in a batch.</p>
<p>If you have ideas of what you would like to see in a new version of Fast video indexer please let me know either by posting here or by mailing me.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer&amp;desc=I%20have%20finally%20started%20work%20on%20the%20next%20major%20update%20of%20the%20Fast%20video%20indexer%20software.%20For%20the%20last%202%20years%20I%20have%20only%20done%20minor%20changes%20to%20the%20software%2C%20more%20in%20the%20line%20of%20bugfixes%20and%20I%20have%20implemented%20a%20few%20ideas%20from%20users.%20This%20has%20been%20good%20i%20think%20as%20I%20have%20been%20able%20to%20improve%20the%20core" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer_amp_desc=I_20have_20finally_20started_20work_20on_20the_20next_20major_20update_20of_20the_20Fast_20video_20indexer_20software._20For_20the_20last_202_20years_20I_20have_20only_20done_20minor_20changes_20to_20the_20software_2C_20more_20in_20the_20line_20of_20bugfixes_20and_20I_20have_20implemented_20a_20few_20ideas_20from_20users._20This_20has_20been_20good_20i_20think_20as_20I_20have_20been_20able_20to_20improve_20the_20core&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;bm_description=The+next+version+of+Fast+Video+Indexer&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_bm_description=The+next+version+of+Fast+Video+Indexer_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;title=The+next+version+of+Fast+Video+Indexer" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/_amp_title=The+next+version+of+Fast+Video+Indexer&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+next+version+of+Fast+Video+Indexer+-+http://b2l.me/ztttz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=The+next+version+of+Fast+Video+Indexer+-+http_//b2l.me/ztttz_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/uncategorized/the-next-version-of-fast-video-indexer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to solve common video problems part 2</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 06:40:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Codecs]]></category>
		<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[codec problems]]></category>
		<category><![CDATA[solve codec problems]]></category>
		<category><![CDATA[video problems]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=32</guid>
		<description><![CDATA[After my previous blog entry about how to solve common video problems I wrote a little longer document for my list.
If you are on my Fast video indexer list should already have gotten the link but if you are not, here it is:
Solve video problems
Download and print or  save it for later. Feel free [...]]]></description>
			<content:encoded><![CDATA[<p>After my previous blog entry about <strong>how to solve common video problems </strong>I wrote a little longer document for my list.</p>
<p>If you are on my Fast video indexer list should already have gotten the link but if you are not, here it is:</p>
<p><a href="http://www.FastVideoIndexer.com/files/SolveVideoProblems.pdf" target="_">Solve video problems</a></p>
<p>Download and print or  save it for later. Feel free to share the document as you want, link to it, mail it to your list or host it on your site.</p>
<p>I would love to hear your feedback and ideas for improvements on the document</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2&amp;desc=After%20my%20previous%20blog%20entry%20about%20how%20to%20solve%20common%20video%20problems%20I%20wrote%20a%20little%20longer%20document%20for%20my%20list.%0D%0A%0D%0AIf%20you%20are%20on%20my%20Fast%20video%20indexer%20list%20should%20already%20have%20gotten%20the%20link%20but%20if%20you%20are%20not%2C%20here%20it%20is%3A%0D%0A%0D%0ASolve%20video%20problems%0D%0A%0D%0ADownload%20and%20print%20or%20%20save%20it%20for%20later.%20Fee" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2_amp_desc=After_20my_20previous_20blog_20entry_20about_20how_20to_20solve_20common_20video_20problems_20I_20wrote_20a_20little_20longer_20document_20for_20my_20list._0D_0A_0D_0AIf_20you_20are_20on_20my_20Fast_20video_20indexer_20list_20should_20already_20have_20gotten_20the_20link_20but_20if_20you_20are_20not_2C_20here_20it_20is_3A_0D_0A_0D_0ASolve_20video_20problems_0D_0A_0D_0ADownload_20and_20print_20or_20_20save_20it_20for_20later._20Fee&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;bm_description=How+to+solve+common+video+problems+part+2&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_bm_description=How+to+solve+common+video+problems+part+2_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;title=How+to+solve+common+video+problems+part+2" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/_amp_title=How+to+solve+common+video+problems+part+2&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+solve+common+video+problems+part+2+-+File: /data/app/webapp/functions.php<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=How+to+solve+common+video+problems+part+2+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Line: 7<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=How+to+solve+common+video+problems+part+2+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=How+to+solve+common+video+problems+part+2+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/how-to-solve-common-video-problems-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The most common video problem</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:06:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Codecs]]></category>
		<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[codec]]></category>
		<category><![CDATA[crashes]]></category>
		<category><![CDATA[direct show]]></category>
		<category><![CDATA[solve codec issues]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=26</guid>
		<description><![CDATA[Without any doubt the single most common problem people have today with Fast video indexer are codec related crashes.
Lets start with the technical bit and and the end of the text I will give you a practical tip on how you can solve your codec issues the easy way.

Windows has a really awesome, but at [...]]]></description>
			<content:encoded><![CDATA[<p>Without any doubt the single most common problem people have today with Fast video indexer are codec related crashes.</p>
<p><strong>Lets start with the technical bit and and the end of the text I will give you a practical tip on how you can solve your codec issues the easy way.<br />
</strong></p>
<p>Windows has a really awesome, but at the same time, very complicated system for programming videos applications, called direct show.</p>
<p>There are other alternative programming interfaces but if you want the best of features and speed you need to go the direct show way. That is what Fast video indexer and Windows medial player uses.</p>
<p>Direct show allow an application to create a graph that the video file data  flows through. Each node in the graph is called a filer. A simple graph would have a filter to read the input data from the video file. That filter would pass on the data to a filter that splits the stream into a video stream and an audio stream, the video stream would go into a decoder filter (a codec) and finally the decoded video stream would go to a render filter to display it on screen.</p>
<p>The type of graph needed depends on the type of video file and the content in that video file.  So for each file you watch this graph has to be created and the application needs to figure out what filters to create and how to connect them.  To futher complicate things each of the filters are run as an independent thread, this is really good performance wise since we can make use of more than one cpu core. But, it also makes writing the filters correctly much harder. Filters that may appear to be correct can infact have timing bugs that only appear on some computers with some configurations.</p>
<p><strong>When fast video indexer crashes, 9 our of 10 times it is because the video uses one or another codec that has a bug in it. </strong></p>
<p>If you have a huge batch of videos that all require different types of codecs you are really running a huge amount of code and a bug in any of it can cause the program to crash right away or to cause problems with videos later in the queue.  If Fast video indexer crashes when you are capturing it will try to pick up from the place where it crashed when you restart it. If the crash doesn&#8217;t happend again  the problem was most likely with one of the videos that was captured earlier, just that the problem did not show up right away.</p>
<p><strong>So what can you do to reduce codec problems? </strong></p>
<p>Professional users should decide on one (or at least a limited number of) tried codecs and stick to that one. In that way you reduce the problem significantly and you will very very seldom see crashes.</p>
<p>If you are having problems from time to time start by<a href="http://www.free-codecs.com/download/codec_tweak_tool.htm" onclick="urchinTracker('/outgoing/www.free-codecs.com/download/codec_tweak_tool.htm?referer=');"> Downloading the codec tweak tool </a>and run it on your computer. This tool will go through your computer and find registry entries that are broken, codecs that have known issues and:</p>
<ul>
<li>Scan the registry to detect and remove broken references to codecs and filters.</li>
<li>Generate a detailed log of all installed codecs and filters.</li>
<li>Enable/disable more than 200 codecs and filters (if they are installed).</li>
</ul>
<p>If you need many different codecs on your computer consider the <a href="http://www.codecguide.com/download_kl.htm" onclick="urchinTracker('/outgoing/www.codecguide.com/download_kl.htm?referer=');">latest version of the k-lite codec pack</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem&amp;desc=Without%20any%20doubt%20the%20single%20most%20common%20problem%20people%20have%20today%20with%20Fast%20video%20indexer%20are%20codec%20related%20crashes.%0D%0A%0D%0ALets%20start%20with%20the%20technical%20bit%20and%20and%20the%20end%20of%20the%20text%20I%20will%20give%20you%20a%20practical%20tip%20on%20how%20you%20can%20solve%20your%20codec%20issues%20the%20easy%20way.%0D%0A%0D%0A%0D%0AWindows%20has%20a%20really%20awesom" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem_amp_desc=Without_20any_20doubt_20the_20single_20most_20common_20problem_20people_20have_20today_20with_20Fast_20video_20indexer_20are_20codec_20related_20crashes._0D_0A_0D_0ALets_20start_20with_20the_20technical_20bit_20and_20and_20the_20end_20of_20the_20text_20I_20will_20give_20you_20a_20practical_20tip_20on_20how_20you_20can_20solve_20your_20codec_20issues_20the_20easy_20way._0D_0A_0D_0A_0D_0AWindows_20has_20a_20really_20awesom&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;bm_description=The+most+common+video+problem&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_bm_description=The+most+common+video+problem_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;title=The+most+common+video+problem" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/_amp_title=The+most+common+video+problem&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+most+common+video+problem+-+http://b2l.me/zbn33&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=The+most+common+video+problem+-+http_//b2l.me/zbn33_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/the-most-common-video-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast video indexer awards</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:54:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[prices]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=22</guid>
		<description><![CDATA[Every once and a while I get emails saying the Fast video indexer got an award on some webpage. I think most of these awards are just a way to lure software developers to give their a backlink. So, I have been kind of reluctant to add the awards to the Fast Video Indexer web [...]]]></description>
			<content:encoded><![CDATA[<p>Every once and a while I get emails saying the Fast video indexer got an award on some webpage. I think most of these awards are just a way to lure software developers to give their a backlink. So, I have been kind of reluctant to add the awards to the Fast Video Indexer web page. That is until now, nothing has really changed but since the competing products do it, I guess I should too?</p>
<p>Anyway here are the start of the new <a href="http://www.fastvideoindexer.com/awards.htm">Fast video indexer award page</a>. I just added the last couple of awards to it but now at least i have a place to add them as they arrive.</p>
<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="mceIEcenter">
<dl class="wp-caption  aligncenter" style="width: 223px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/File:Three_stars.svg" onclick="urchinTracker('/outgoing/commons.wikipedia.org/wiki/File_Three_stars.svg?referer=');"><img title="Three stars" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Three_stars.svg/213px-Three_stars.svg.png" alt="Three stars" width="213" height="203" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/File:Three_stars.svg" onclick="urchinTracker('/outgoing/commons.wikipedia.org/wiki/File_Three_stars.svg?referer=');">Wikipedia</a></dd>
</dl>
</div>
</div>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/98f5a9cb-2ace-4f67-a156-10b548eb3450/" onclick="urchinTracker('/outgoing/reblog.zemanta.com/zemified/98f5a9cb-2ace-4f67-a156-10b548eb3450/?referer=');"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=98f5a9cb-2ace-4f67-a156-10b548eb3450" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards&amp;desc=Every%20once%20and%20a%20while%20I%20get%20emails%20saying%20the%20Fast%20video%20indexer%20got%20an%20award%20on%20some%20webpage.%20I%20think%20most%20of%20these%20awards%20are%20just%20a%20way%20to%20lure%20software%20developers%20to%20give%20their%20a%20backlink.%20So%2C%20I%20have%20been%20kind%20of%20reluctant%20to%20add%20the%20awards%20to%20the%20Fast%20Video%20Indexer%20web%20page.%20That%20is%20until%20now%2C" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards_amp_desc=Every_20once_20and_20a_20while_20I_20get_20emails_20saying_20the_20Fast_20video_20indexer_20got_20an_20award_20on_20some_20webpage._20I_20think_20most_20of_20these_20awards_20are_20just_20a_20way_20to_20lure_20software_20developers_20to_20give_20their_20a_20backlink._20So_2C_20I_20have_20been_20kind_20of_20reluctant_20to_20add_20the_20awards_20to_20the_20Fast_20Video_20Indexer_20web_20page._20That_20is_20until_20now_2C&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;bm_description=Fast+video+indexer+awards&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_bm_description=Fast+video+indexer+awards_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;title=Fast+video+indexer+awards" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/_amp_title=Fast+video+indexer+awards&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fast+video+indexer+awards+-+File: /data/app/webapp/functions.php<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+awards+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Line: 7<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+awards+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+awards+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus on Fast video indexer</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/#comments</comments>
		<pubDate>Mon, 24 May 2010 07:43:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[future development]]></category>
		<category><![CDATA[plans]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=18</guid>
		<description><![CDATA[Hi everyone.
The last year I have been focusing on other projects than Fast video indexer. I am working in the computer game industry and this year I have spend a huge amount of time working on two big games that are now out in the shops. If you are interested feel free to check them [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone.</p>
<p>The last year I have been focusing on other projects than Fast video indexer. I am working in the computer game industry and this year I have spend a huge amount of time working on two big games that are now out in the shops. If you are interested feel free to check them out, Just Cause 2 and the pc version of Battlefield  : Bad Company 2.</p>
<p>Anyways, the next couple of months I will try to focus more on Fast Video Indexer. First of all I will spend some time improving this neglected web page and this blog in particular. I have already started a bit updating the FAQ page and a picture of me on the support page.</p>
<p>As for the software the last years and a half&#8217;s updates have only been small fixes to problems. I do think the quality of the program has been improved alot but really you have not seen any new features. Right now I am planning on where to take the software and I would love to have your feedback. I would love to know more about how you use the software and what you think can be improved.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer&amp;desc=Hi%20everyone.%0D%0A%0D%0AThe%20last%20year%20I%20have%20been%20focusing%20on%20other%20projects%20than%20Fast%20video%20indexer.%20I%20am%20working%20in%20the%20computer%20game%20industry%20and%20this%20year%20I%20have%20spend%20a%20huge%20amount%20of%20time%20working%20on%20two%20big%20games%20that%20are%20now%20out%20in%20the%20shops.%20If%20you%20are%20interested%20feel%20free%20to%20check%20them%20out%2C%20Just%20Ca" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer_amp_desc=Hi_20everyone._0D_0A_0D_0AThe_20last_20year_20I_20have_20been_20focusing_20on_20other_20projects_20than_20Fast_20video_20indexer._20I_20am_20working_20in_20the_20computer_20game_20industry_20and_20this_20year_20I_20have_20spend_20a_20huge_20amount_20of_20time_20working_20on_20two_20big_20games_20that_20are_20now_20out_20in_20the_20shops._20If_20you_20are_20interested_20feel_20free_20to_20check_20them_20out_2C_20Just_20Ca&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;bm_description=Focus+on+Fast+video+indexer&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_bm_description=Focus+on+Fast+video+indexer_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;title=Focus+on+Fast+video+indexer" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/_amp_title=Focus+on+Fast+video+indexer&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Focus+on+Fast+video+indexer+-+http://b2l.me/zbqjw&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Focus+on+Fast+video+indexer+-+http_//b2l.me/zbqjw_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/focus-on-fast-video-indexer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast video indexer 1.16</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/#comments</comments>
		<pubDate>Sun, 23 May 2010 07:22:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[video software]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=15</guid>
		<description><![CDATA[Fast video indexer 1.16 is now available for download. It&#8217;s a small upgrade, the difference is that time is now send to the template in ms instead of seconds. The reason for this change was that if you captured more than one frame per second the images would get the same name and you would [...]]]></description>
			<content:encoded><![CDATA[<p>Fast video indexer 1.16 is now available for download. It&#8217;s a small upgrade, the difference is that time is now send to the template in ms instead of seconds. The reason for this change was that if you captured more than one frame per second the images would get the same name and you would end up with only one image per second unless you changed to name by frame.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16&amp;desc=Fast%20video%20indexer%201.16%20is%20now%20available%20for%20download.%20It%27s%20a%20small%20upgrade%2C%20the%20difference%20is%20that%20time%20is%20now%20send%20to%20the%20template%20in%20ms%20instead%20of%20seconds.%20The%20reason%20for%20this%20change%20was%20that%20if%20you%20captured%20more%20than%20one%20frame%20per%20second%20the%20images%20would%20get%20the%20same%20name%20and%20you%20would%20end%20up%20wi" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16_amp_desc=Fast_20video_20indexer_201.16_20is_20now_20available_20for_20download._20It_27s_20a_20small_20upgrade_2C_20the_20difference_20is_20that_20time_20is_20now_20send_20to_20the_20template_20in_20ms_20instead_20of_20seconds._20The_20reason_20for_20this_20change_20was_20that_20if_20you_20captured_20more_20than_20one_20frame_20per_20second_20the_20images_20would_20get_20the_20same_20name_20and_20you_20would_20end_20up_20wi&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;bm_description=Fast+video+indexer+1.16&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_bm_description=Fast+video+indexer+1.16_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;title=Fast+video+indexer+1.16" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/_amp_title=Fast+video+indexer+1.16&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fast+video+indexer+1.16+-+File: /data/app/webapp/functions.php<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+1.16+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Line: 7<br / onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+1.16+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+1.16+-+File_/data/app/webapp/functions.php_br_/_Line_7_br_/_Message_Too_many_connections_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-1-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast video indexer 1.14</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:26:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[capture every frame]]></category>
		<category><![CDATA[frame capture]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=13</guid>
		<description><![CDATA[I just updated the fast video indexer software, get it as usual from www.fastvideoindexer.com
Donald White, recently wrote and told me that Fast video indexer had problems capturing all frames from some of his video clips. Donald uses the program to capture videos of dancers to help them improve their act. He did send me a [...]]]></description>
			<content:encoded><![CDATA[<p>I just updated the fast video indexer software, get it as usual from <a href="http://www.fastvideoindexer.com">www.fastvideoindexer.com</a></p>
<p>Donald White, recently wrote and told me that Fast video indexer had problems capturing all frames from some of his video clips. Donald uses the program to capture videos of dancers to help them improve their act. He did send me a video that had the problem and I was able to reproduce the results. Seems that I had a round off error that could cause frames to be skipped. If you use fast video indexer to capture every single frame as an image you probably want to get this update. </p>
<p>I am currently working on another minor update to the software. actually I had forgot I even had this blog. Now Ill keep you updated here a little more often.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14&amp;desc=I%20just%20updated%20the%20fast%20video%20indexer%20software%2C%20get%20it%20as%20usual%20from%20www.fastvideoindexer.com%0D%0A%0D%0ADonald%20White%2C%20recently%20wrote%20and%20told%20me%20that%20Fast%20video%20indexer%20had%20problems%20capturing%20all%20frames%20from%20some%20of%20his%20video%20clips.%20Donald%20uses%20the%20program%20to%20capture%20videos%20of%20dancers%20to%20help%20them%20improve%20" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14_amp_desc=I_20just_20updated_20the_20fast_20video_20indexer_20software_2C_20get_20it_20as_20usual_20from_20www.fastvideoindexer.com_0D_0A_0D_0ADonald_20White_2C_20recently_20wrote_20and_20told_20me_20that_20Fast_20video_20indexer_20had_20problems_20capturing_20all_20frames_20from_20some_20of_20his_20video_20clips._20Donald_20uses_20the_20program_20to_20capture_20videos_20of_20dancers_20to_20help_20them_20improve_20&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;bm_description=Fast+video+indexer+1.14&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_bm_description=Fast+video+indexer+1.14_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;title=Fast+video+indexer+1.14" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/_amp_title=Fast+video+indexer+1.14&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fast+video+indexer+1.14+-+http://b2l.me/zbqkc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+1.14+-+http_//b2l.me/zbqkc_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-114/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast video indexer 1.13</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 20:30:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[index videos]]></category>
		<category><![CDATA[save video frames]]></category>
		<category><![CDATA[video capture]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=9</guid>
		<description><![CDATA[Yesterday I did a minor update to the Fast video indexer thumbnail Index Software. I just fixed a few minor problems that have been irritating me. You can download the program from www.fastvideoindexer.com
So what is new?
First of all you can now re-index videos from the context menu on the results page. When a video is [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I did a minor update to the Fast video indexer thumbnail Index Software. I just fixed a few minor problems that have been irritating me. You can download the program from <a href="http://www.fastvideoindexer.com">www.fastvideoindexer.com</a></p>
<p>So what is new?</p>
<p>First of all you can now re-index videos from the context menu on the results page. When a video is re-indexed it will use the current settings. Say for example you have your video collection indexed but you now want html pages for a few videos. Go to the setting page and check the html output. Next, right click the videos you want html pages for and select the re-index option from the menu. The videos are moved to the index queue and you will get your html pages. You can also change any other option like how many images to capture or what types of templates to use.</p>
<p>Another simple thing that has been missing is an ability to remove videos from the result page. From the beginning the result page was just that but now when more and more people, including me, use the result page it’s nice to be able to get rid of videos that for some reason failed to index or videos that you have deleted since you indexed them.</p>
<div id="seolinx-tooltip" style="border: 1px solid #000000; margin: 0pt; padding: 0pt; display: none; opacity: 0.9; position: absolute; width: auto; z-index: 99999;">
<table style="border: 0pt none; margin: 0pt; padding: 0pt; border-collapse: separate; width: auto;" border="0">
<tbody>
<tr>
<td id="seolinx-table" style="border: 0pt none; margin: 1px; padding: 0pt; font-family: Tahoma; font-size: 11px; font-weight: bold;">
<div style="margin: 0pt; padding: 0pt; overflow: auto; width: auto;">
<table id="seolinx-paramtable" style="border: 1px solid gray; margin: 0pt; border-collapse: separate;" border="0">
<tbody>
<tr>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://toolbarqueries.google.com/favicon.ico" alt="" width="12" height="12" /> PR: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google pagerank" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.google.com/favicon.ico" alt="" width="12" height="12" /> I: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google index" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.google.com/favicon.ico" alt="" width="12" height="12" /> L: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Google links" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://siteexplorer.search.yahoo.com/favicon.ico" alt="" width="12" height="12" /> LD: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Yahoo linkdomain" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://search.msn.com/favicon.ico" alt="" width="12" height="12" /> I: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="MSN index" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Sitemap.xml" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Rank: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush Rank" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Traffic: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush SE Traffic" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://www.semrush.com/favicon.ico" alt="" width="12" height="12" /> Price: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="SEMRush SE Traffic price" href="javascript:{}">wait&#8230;</a></td>
<td style="border: 1px solid gray; padding: 2px; background: #f0f0f0 none repeat scroll 0% 0%; color: darkgreen; font-family: Tahoma; font-size: 7pt; font-weight: bold; white-space: nowrap;"><img style="vertical-align: middle;" src="http://siteanalytics.compete.com/favicon.ico" alt="" width="12" height="12" /> C: <a style="color: blue; font-family: Tahoma; font-size: 7pt; font-weight: bold; text-decoration: underline;" title="Compete Rank" href="javascript:{}">wait&#8230;</a></td>
</tr>
</tbody>
</table>
</div>
</td>
<td id="seolinx-tooltip-close" style="border: 0pt none; margin: 0pt; padding: 1px; cursor: pointer; vertical-align: middle; width: auto;" title="close"><img src="chrome://seoquake/content/skin/close.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13&amp;desc=Yesterday%20I%20did%20a%20minor%20update%20to%20the%20Fast%20video%20indexer%20thumbnail%20Index%20Software.%20I%20just%20fixed%20a%20few%20minor%20problems%20that%20have%20been%20irritating%20me.%20You%20can%20download%20the%20program%20from%20www.fastvideoindexer.com%0D%0A%0D%0ASo%20what%20is%20new%3F%0D%0A%0D%0AFirst%20of%20all%20you%20can%20now%20re-index%20videos%20from%20the%20context%20menu%20on%20the%20re" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13_amp_desc=Yesterday_20I_20did_20a_20minor_20update_20to_20the_20Fast_20video_20indexer_20thumbnail_20Index_20Software._20I_20just_20fixed_20a_20few_20minor_20problems_20that_20have_20been_20irritating_20me._20You_20can_20download_20the_20program_20from_20www.fastvideoindexer.com_0D_0A_0D_0ASo_20what_20is_20new_3F_0D_0A_0D_0AFirst_20of_20all_20you_20can_20now_20re-index_20videos_20from_20the_20context_20menu_20on_20the_20re&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;bm_description=Fast+video+indexer+1.13&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_bm_description=Fast+video+indexer+1.13_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;title=Fast+video+indexer+1.13" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/_amp_title=Fast+video+indexer+1.13&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fast+video+indexer+1.13+-+http://b2l.me/zbqkk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+video+indexer+1.13+-+http_//b2l.me/zbqkk_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-113/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast Video Indexer official blog</title>
		<link>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/</link>
		<comments>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 20:26:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fast video indexer]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[video frame capture]]></category>
		<category><![CDATA[video software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.fastvideoindexer.com/blog/?p=4</guid>
		<description><![CDATA[Welcome to the new official blog for the Fast Video Indexer software. My name is Fredrik Lönn and I am the author of the software. If you are reading this you probably already know about Fast video indexer. Well just in case, let me tell you in short… this is after all the first post [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the new official blog for the Fast Video Indexer <a class="zem_slink" href="http://en.wikipedia.org/wiki/Computer_software" title="Computer software" rel="wikipedia" onclick="urchinTracker('/outgoing/en.wikipedia.org/wiki/Computer_software?referer=');">software</a>. My name is Fredrik Lönn and I am the author of the software. If you are reading this you probably already know about Fast video indexer. Well just in case, let me tell you in short… this is after all the first post on this blog.</p>
<p>Fast Video Indexer is a Windows program that takes a number of videos files and automatically extracts photos from them. It can combine the extracted photos into a single collection images that gives you a clear instant view of the entire video clip. And, it can create an html page that can serve as a preview if you want to put the video on the web. In the latest version I added a new feature that now makes it possible to create an entire video preview web site for several videos.</p>
<p>So how do people use Fast Video Indexer?</p>
<p>Video professionals use it to organize videos they work with, to faster find video scenes and save time. </p>
<p>Video enthusiasts use it to keep track of their video collection and to quickly preview videos</p>
<p>I made the program to be able to browse my entire video collection even though I have most of the video files archived away. </p>
<p>And these are just some of the common uses. Fast video indexer is used in forensics to quickly browse evidence, to create print training materials from videos and much much more.</p>
<p>In this blog I will tell you about the latest improvements to the software, novel uses of the program and share some tips to get the most out of the software.</p>
<p>I also intend to share video related tips, software recommendation and information in general.</p>
<p>And, I hope to get feedback from you, my users.</p>
<p>If you work with videos you need to try Fast video indexer, <a href="http://www.FastVideoIndexer.com">download the free trial version and test it for yourself</a>.</p>
<p>Until next time<br />
  Fredrik Lönn</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/db8a6ebb-ac45-4eb8-921d-67ff7c01619c/" title="Zemified by Zemanta" onclick="urchinTracker('/outgoing/reblog.zemanta.com/zemified/db8a6ebb-ac45-4eb8-921d-67ff7c01619c/?referer=');"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=db8a6ebb-ac45-4eb8-921d-67ff7c01619c" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="urchinTracker('/outgoing/delicious.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog" rel="nofollow" class="external" title="Digg this!" onclick="urchinTracker('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog&amp;desc=Welcome%20to%20the%20new%20official%20blog%20for%20the%20Fast%20Video%20Indexer%20software.%20My%20name%20is%20Fredrik%20L%C3%B6nn%20and%20I%20am%20the%20author%20of%20the%20software.%20If%20you%20are%20reading%20this%20you%20probably%20already%20know%20about%20Fast%20video%20indexer.%20Well%20just%20in%20case%2C%20let%20me%20tell%20you%20in%20short%E2%80%A6%20this%20is%20after%20all%20the%20first%20post%20on%20this%20blog" rel="nofollow" class="external" title="Post this on Diigo" onclick="urchinTracker('/outgoing/www.diigo.com/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog_amp_desc=Welcome_20to_20the_20new_20official_20blog_20for_20the_20Fast_20Video_20Indexer_20software._20My_20name_20is_20Fredrik_20L_C3_B6nn_20and_20I_20am_20the_20author_20of_20the_20software._20If_20you_20are_20reading_20this_20you_20probably_20already_20know_20about_20Fast_20video_20indexer._20Well_20just_20in_20case_2C_20let_20me_20tell_20you_20in_20short_E2_80_A6_20this_20is_20after_20all_20the_20first_20post_20on_20this_20blog&amp;referer=');">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="urchinTracker('/outgoing/www.google.com/buzz/post?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;bm_description=Fast+Video+Indexer+official+blog&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong" onclick="urchinTracker('/outgoing/www.mister-wong.com/addurl/?bm_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_bm_description=Fast+Video+Indexer+official+blog_amp_plugin=sexybookmarks&amp;referer=');">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog" rel="nofollow" class="external" title="Share this on Mixx" onclick="urchinTracker('/outgoing/www.mixx.com/submit?page_url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog" rel="nofollow" class="external" title="Share this on Reddit" onclick="urchinTracker('/outgoing/reddit.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;title=Fast+Video+Indexer+official+blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="urchinTracker('/outgoing/www.stumbleupon.com/submit?url=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/_amp_title=Fast+Video+Indexer+official+blog&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/" rel="nofollow" class="external" title="Share this on Technorati" onclick="urchinTracker('/outgoing/technorati.com/faves?add=http_//www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fast+Video+Indexer+official+blog+-+http://b2l.me/zbqkq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="urchinTracker('/outgoing/twitter.com/home?status=Fast+Video+Indexer+official+blog+-+http_//b2l.me/zbqkq_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.fastvideoindexer.com/blog/fast-video-indexer/fast-video-indexer-official-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
