<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
>

<channel>
	<title>arthur.wiebe &#187; vlc</title>
	<atom:link href="http://blog.artooro.com/tag/vlc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.artooro.com</link>
	<description>Let integrity and uprightness preserve me; for I wait on thee. - Psalms 25:21</description>
	<lastBuildDate>Thu, 01 Apr 2010 01:01:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<!-- podcast_generator="Blubrry PowerPress/1.0.8" mode="advanced" entry="simple" -->
	<itunes:summary>An exciting short podcast which touches on some interesting facts, truths, and who knows what all else is in store for those who choose to listen!</itunes:summary>
	<itunes:author>arthur.wiebe</itunes:author>
	<itunes:explicit>clean</itunes:explicit>
	<itunes:image href="http://blog.artooro.com/wp-content/uploads/custom/Did_You_Know.png" />
	<itunes:owner>
		<itunes:name>arthur.wiebe</itunes:name>
		<itunes:email>arthur@artooro.com</itunes:email>
	</itunes:owner>
	<managingEditor>arthur@artooro.com (arthur.wiebe)</managingEditor>
	<copyright>Copyright 2010 Arthur Wiebe</copyright>
	<itunes:subtitle>The Podcast that Tells You the Truth</itunes:subtitle>
	<itunes:keywords>knowledge, truth, facts</itunes:keywords>
	<image>
		<title>arthur.wiebe &#187; vlc</title>
		<url>http://blog.artooro.com/wp-content/uploads/custom/Did_You_Know-x256.png</url>
		<link>http://blog.artooro.com</link>
	</image>
	<itunes:category text="Education" />
	<itunes:category text="Religion &amp; Spirituality" />
		<item>
		<title>How to Create Video Thumbnails Using VLC 1.0</title>
		<link>http://blog.artooro.com/2009/12/23/how-to-create-video-thumbnails-using-vlc-1-0/</link>
		<comments>http://blog.artooro.com/2009/12/23/how-to-create-video-thumbnails-using-vlc-1-0/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 21:18:20 +0000</pubDate>
		<dc:creator>Arthur</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://blog.artooro.com/?p=543</guid>
		<description><![CDATA[Apparently creating video snapshots, thumbnails, whatever you want to call them with VLC 1.0.2 or later has really changed, and everything out there that I found simply didn&#8217;t work. When I tried to use the documentation I found available the lovely error message came up saying: The command line options couldn&#8217;t be loaded, check that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.artooro.com/wp-content/uploads/2009/12/thumbnail-stack1.png"><img class="alignleft size-thumbnail wp-image-548" title="thumbnail-stack" src="http://blog.artooro.com/wp-content/uploads/2009/12/thumbnail-stack1-150x150.png" alt="" width="135" height="135" /></a>Apparently creating video snapshots, thumbnails, whatever you want to call them with <a href="http://www.videolan.org/vlc/" target="_blank">VLC</a> 1.0.2 or later has really changed, and everything out there that I found simply didn&#8217;t work.</p>
<p>When I tried to use the documentation I found available the lovely error message came up saying:</p>
<blockquote><p>The command line options couldn&#8217;t be loaded, check that they are valid.<br />
Press the RETURN key to continue&#8230;</p></blockquote>
<p>So I&#8217;m on a Windows XP virtual machine but this same thing applies to Linux and Mac OS X. So how can you easily from the command line script the creation of a thumbnail, snapshot, image, etc. from a video?</p>
<p>Here you go!</p>
<pre>"C:\Program Files\VideoLAN\VLC\vlc.exe" --video-filter scene -V dummy
    --scene-height=128 --scene-width=128 --scene-format=jpeg --scene-replace
    --scene-ratio 24 --start-time=6 --stop-time=7 --scene-prefix=thumb
    --scene-path="C:\thumbs"  C:\videos\video_file.mp4 vlc://quit</pre>
<p>Now you are probably asking, can you please explain what all those flags and arguments mean? OK.</p>
<ul>
<li>&#8211;video-filter : This adds post-processing filters to enhance the picture quality, for instance deinterlacing, or distortthe video. In this case we&#8217;re using the scene filter for snapshots.</li>
<li>-V : Specifies a video output module. We don&#8217;t want the video to actually play so it&#8217;s set to dummy</li>
<li>&#8211;scene-height : The height of the snapshot in pixels</li>
<li>&#8211;scene-width : The width of the snapshot in pixels</li>
<li>&#8211;scene-format : Format of the image. Can be jpeg or png.</li>
<li>&#8211;scene-replace : Replaced the resulting image each time. Remove this flag to have the file named in sequential order.</li>
<li>&#8211;scene-ratio : Ratio of images to record. 3 means that one image out of three is recorded.</li>
<li>&#8211;start-time : Start at this position in seconds</li>
<li>&#8211;stop-time : Stop at this position in seconds</li>
<li>&#8211;scene-prefix : Name the image file with this name. If scene-replace is not specified the file will be named prefixXX.</li>
<li>&#8211;scene-path : Path on file-system to store the snapshots</li>
<li>C:\video\video_file.mp4 : path to video input file</li>
<li>vlc://quit : Quit once the process is finished</li>
</ul>
<p>So, all the best as you try to script the creation of your thumbnail images!</p>
<p>More info: This is working with VLC 1.0.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.artooro.com/2009/12/23/how-to-create-video-thumbnails-using-vlc-1-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
