<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Pihlaja &#124; scene based editor development</title>
	<atom:link href="http://pihlaja.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pihlaja.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 05 Oct 2010 07:50:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pihlaja.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Pihlaja &#124; scene based editor development</title>
		<link>http://pihlaja.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pihlaja.wordpress.com/osd.xml" title="Pihlaja &#124; scene based editor development" />
	<atom:link rel='hub' href='http://pihlaja.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using glClipPlanes and plane equations</title>
		<link>http://pihlaja.wordpress.com/2010/10/05/using-glclipplanes-and-plane-equations/</link>
		<comments>http://pihlaja.wordpress.com/2010/10/05/using-glclipplanes-and-plane-equations/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 07:50:03 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[d]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[d programming language]]></category>
		<category><![CDATA[glClipPlane]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[plane equation]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/?p=28</guid>
		<description><![CDATA[About a year ago, I searched for an OpenGL way of clipping a rectangle in 2D/3D space. To explain further: I&#8217;m making a GUI library with OpenGL, and I wanted a parent rectangle to be able to clip it&#8217;s child rectangles even if they were textured. I found glClipPlane, and tried it briefly. There was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=28&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>About a year ago, I searched for an OpenGL way of clipping a rectangle in 2D/3D space. To explain further: I&#8217;m making a GUI library with OpenGL, and I wanted a parent rectangle to be able to clip it&#8217;s child rectangles even if they were textured. I found glClipPlane, and tried it briefly. There was almost no documentation found, or it was very mathematical talking about plane equations without properly explaining how it should be transferred to code. I also could not find any coding examples of using them.</p>
<p>So, I spent about three months writing a system that would do this clipping in software. For flat rectangles this was easy, but for textured stuff it was very complex, as it was manipulating the texturecoords to get the clipping done. I somehow managed to write it, but the system was incomprehensible, added some software overhead, didn&#8217;t properly support my per widget zooming system, and I had to put all my OpenGL drawing inside this clipping subsystem. For about a year I was semi-satisfied with it, but as I changed to another way of drawing fonts, I needed either a new clipping system, or I&#8217;d have to adapt the external font code to my awful clipping system.</p>
<p>Then I did another search and found this page: http://local.wasp.uwa.edu.au/~pbourke/geometry/planeeq/</p>
<p>It&#8217;s dated 1989, and it&#8217;s another one of those mathematicians only explanations (I&#8217;m a pragmatic self-taught trial-by-error coder, with very poor mathematical knowledge, sorry). But for the first time it had something that looked a bit like pseudo-code and translated well into programming. So, I tested it and with a few first misses I was able to get the following code of it, that works for me. I&#8217;m not sure if this is the correct or best way of using plane equations, but it&#8217;s the only one that I&#8217;ve gotten working.</p>
<div id="_mcePaste">double[] planeEquation( float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3, float z3)</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">double[] eq = new double[4];</div>
<div id="_mcePaste">eq[0] = (y1*(z2 &#8211; z3)) + (y2*(z3 &#8211; z1)) + (y3*(z1 &#8211; z2));</div>
<div id="_mcePaste">eq[1] = (z1*(x2 &#8211; x3)) + (z2*(x3 &#8211; x1)) + (z3*(x1 &#8211; x2));</div>
<div id="_mcePaste">eq[2] = (x1*(y2 &#8211; y3)) + (x2*(y3 &#8211; y1)) + (x3*(y1 &#8211; y2));</div>
<div id="_mcePaste">eq[3] = -((x1*((y2*z3) &#8211; (y3*z2))) + (x2*((y3*z1) &#8211; (y1*z3))) + (x3*((y1*z2) &#8211; (y2*z1))));</div>
<div id="_mcePaste">return eq;</div>
<div id="_mcePaste">}</div>
<p>Horrible formatting there. I don&#8217;t know how to use wordpress to get the code looking correct&#8230;</p>
<p>Then I&#8217;m doing the following on each parent rectangle, just before starting to translate or draw the children:</p>
<p>double[] left_eq = planeEquation(ix1,iy1,iz, ix1,iy2,iz, ix1,iy2,iz+1.0f);</p>
<p><span style="white-space:pre;"> </span>glClipPlane(GL_CLIP_PLANE0, left_eq.ptr);</p>
<p><span style="white-space:pre;"> </span>glEnable(GL_CLIP_PLANE0);</p>
<p><span style="white-space:pre;"> </span>delete left_eq;</p>
<p><span style="white-space:pre;"> </span></p>
<p><span style="white-space:pre;"> </span>double[] right_eq = planeEquation(ix2,iy1,iz, ix2,iy2,iz, ix2,iy2,iz-1.0f);</p>
<p><span style="white-space:pre;"> </span>glClipPlane(GL_CLIP_PLANE1, right_eq.ptr);</p>
<p><span style="white-space:pre;"> </span>glEnable(GL_CLIP_PLANE1);</p>
<p><span style="white-space:pre;"> </span>delete right_eq;</p>
<p><span style="white-space:pre;"> </span></p>
<p><span style="white-space:pre;"> </span>double[] top_eq = planeEquation(ix1,iy1,iz, ix2,iy1,iz, ix2,iy1,iz-1.0f);</p>
<p><span style="white-space:pre;"> </span>glClipPlane(GL_CLIP_PLANE2, top_eq.ptr);</p>
<p><span style="white-space:pre;"> </span>glEnable(GL_CLIP_PLANE2);</p>
<p><span style="white-space:pre;"> </span>delete top_eq;</p>
<p><span style="white-space:pre;"> </span></p>
<p><span style="white-space:pre;"> </span>double[] bottom_eq = planeEquation(ix1,iy2,iz, ix2,iy2,iz, ix2,iy2,iz+1.0f);</p>
<p><span style="white-space:pre;"> </span>glClipPlane(GL_CLIP_PLANE3, bottom_eq.ptr);</p>
<p><span style="white-space:pre;"> </span>glEnable(GL_CLIP_PLANE3);</p>
<p><span style="white-space:pre;"> </span>delete bottom_eq;</p>
<p>So all you have to give to this planeEquation function is three points on the clipping plane. It seems that the order of them somehow dictates which side of it will be clipped and which side will be visible. In this example just changing the direction of the last Z from plus to minus, changes which side gets clipped.</p>
<p>I hope this is useful to someone trying to get some sense into glClipPlane and plane equations. This might all be just wrong, but it works for me! Any corrections and suggestions in the comments, please.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=28&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2010/10/05/using-glclipplanes-and-plane-equations/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
		<item>
		<title>Rae GUI library first demo screencapture</title>
		<link>http://pihlaja.wordpress.com/2009/10/07/rae-gui-library-first-demo-screencapture/</link>
		<comments>http://pihlaja.wordpress.com/2009/10/07/rae-gui-library-first-demo-screencapture/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:29:34 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[d]]></category>
		<category><![CDATA[Rae]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/?p=23</guid>
		<description><![CDATA[I thought I&#8217;d keep a low profile until my new project was finished, but as it now seems that it is progressing quite slowly, I might as well make it public for others to see. Rae is going to be a general purpose GUI library. It&#8217;s nowhere near finished, and it is not usable for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=23&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d keep a low profile until my new project was finished, but as it now seems that it is progressing quite slowly, I might as well make it public for others to see.</p>
<p>Rae is going to be a general purpose GUI library. It&#8217;s nowhere near finished, and it is not usable for anything but making nice little demos of it. (Well you could make something like a calculator with it. Or possibly a pictureviewer of some sort with some effort. So, it&#8217;s not entirely useless&#8230;)</p>
<p>The keywords go something like this: D programming language, OpenGL, X11/MIT licence, (GtkD, cairo, pango), Linux, OS X, Windows.</p>
<p>Here&#8217;s a link to the video:</p>
<div id="attachment_24" class="wp-caption alignnone" style="width: 310px"><a href="http://www.vimeo.com/6918620"><img class="size-medium wp-image-24" title="rae_gui_lib_first_demo" src="http://pihlaja.files.wordpress.com/2009/10/rae_gui_lib_first_demo.png?w=300&#038;h=168" alt="Rae GUI first demo" width="300" height="168" /></a><p class="wp-caption-text">Rae GUI first demo</p></div>
<p>And there&#8217;s also a project page at <a href="http://www.dsource.org/projects/rae">http://www.dsource.org/projects/rae</a></p>
<p>The source in the repository is up to date, but a bigger example like seen on the video is missing. I might add it there later, when I get the time. But feel free to try and compile it. Shouldn&#8217;t be too easy. Lot&#8217;s of nasty big dependencies, that I&#8217;d want to drop later. The code is a bit hacky, but pragmatic, so if you prefer projects with perfect code, look elsewhere. One of the main features is that it uses 0% CPU when doing nothing. Yes, that&#8217;s just how it&#8217;s supposed to be, but not any of the OpenGL GUIs that I&#8217;ve seen, do that. It&#8217;s full of small graphic glithces, unfinished widgets and buggy behaviour and sometimes even bad design. But I&#8217;m willing to change all that if anyone wants to start participating in this weird and wonderful project. Progress is slow, as always, but there&#8217;s a start. Feel free to donate me time, hardware or anything useful. (I&#8217;d put a smiley here, but I&#8217;m trying to quit using them.)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=23&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2009/10/07/rae-gui-library-first-demo-screencapture/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>

		<media:content url="http://pihlaja.files.wordpress.com/2009/10/rae_gui_lib_first_demo.png?w=300" medium="image">
			<media:title type="html">rae_gui_lib_first_demo</media:title>
		</media:content>
	</item>
		<item>
		<title>GtkD now supports Mac OS X</title>
		<link>http://pihlaja.wordpress.com/2009/02/05/gtkd-now-supports-mac-os-x/</link>
		<comments>http://pihlaja.wordpress.com/2009/02/05/gtkd-now-supports-mac-os-x/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 21:27:07 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[gtkD]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/?p=21</guid>
		<description><![CDATA[Since yesterday or so, I was happy to find out that the svn trunk version of GtkD is supporting Mac OS X. This adds the supported platforms up to three. Linux and Windows are of course the other platforms. Currently you&#8217;ll need to use the semi-official GTK+ Framework (the native Quartz port), or then if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=21&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since yesterday or so, I was happy to find out that the svn trunk version of <a href="http://www.dsource.org/projects/gtkd">GtkD</a> is supporting Mac OS X. This adds the supported platforms up to three. Linux and Windows are of course the other platforms.</p>
<p>Currently you&#8217;ll need to use the semi-official <a href="http://www.gtk-osx.org/">GTK+ Framework (the native Quartz port)</a>, or then if you absolutely must use the X11 version, you&#8217;ll have to edit some paths inside GtkD.</p>
<p>A screenshot will follow.</p>
<p><a href="http://www.flickr.com/photos/97207134@N00/3250611708/" title="GtkD running on OS X by satelliittipupu, on Flickr"><img src="http://farm4.static.flickr.com/3369/3250611708_6387890442.jpg" width="500" height="313" alt="GtkD running on OS X" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=21&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2009/02/05/gtkd-now-supports-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3369/3250611708_6387890442.jpg" medium="image">
			<media:title type="html">GtkD running on OS X</media:title>
		</media:content>
	</item>
		<item>
		<title>Frequency/Bush demo is now available as a video</title>
		<link>http://pihlaja.wordpress.com/2008/03/20/frequencybush-demo-is-now-available-as-a-video/</link>
		<comments>http://pihlaja.wordpress.com/2008/03/20/frequencybush-demo-is-now-available-as-a-video/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 00:20:21 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[d]]></category>
		<category><![CDATA[gstreamerD]]></category>
		<category><![CDATA[out of topic]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/?p=20</guid>
		<description><![CDATA[As I told earlier I had a little side project the other day, and wrote a demo called Frequency/Bush in D/OpenGL/SDL/gstreamerD/Linux. Now you can watch it as a video in here. It finished 7th in the Alternative Party 2007. Results. Get binary and the code (which is impossible to compile at the moment but is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=20&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vimeo.com/643225" title="Frequency/Bush HD video"><img src="http://www.pouet.net/screenshots/49794.jpg" alt="Frequency/Bush screenshot in Pouet.net" height="172" width="400" /></a></p>
<p>As I told earlier I had a little side project the other day, and wrote a <a href="http://en.wikipedia.org/wiki/Demoscene" title="Demoscene defined in wikipedia">demo</a> called Frequency/Bush in D/OpenGL/SDL/gstreamerD/Linux.</p>
<p>Now you can watch it as a video in <a href="http://www.vimeo.com/643225" title="Frequency/Bush HD video">here</a>.</p>
<p>It finished 7th  in <a href="http://www.altparty.org/">the Alternative Party 2007</a>. <a href="http://www.scene.org/file.php?file=%2Fparties%2F2007%2Faltparty07%2Fresults.txt&amp;fileinfo">Results</a>. Get <a href="http://www.scene.org/file.php?file=%2Fparties%2F2007%2Faltparty07%2Fdemo%2Ffrequency_bush_by_reuna-final.tgz&amp;fileinfo" title="code">binary and the code</a> (which is impossible to compile at the moment but is now final and closer to what was actually shown in the party). The binary is for Ubuntu Feisty (But should work with later Ubuntus and possibly other linuxes as well. Just install gstreamer-0.10-plugins-bad and other more obvious stuff). It&#8217;s not a good demo, but it&#8217;s my first, and made with D.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=20&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2008/03/20/frequencybush-demo-is-now-available-as-a-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>

		<media:content url="http://www.pouet.net/screenshots/49794.jpg" medium="image">
			<media:title type="html">Frequency/Bush screenshot in Pouet.net</media:title>
		</media:content>
	</item>
		<item>
		<title>Now the presentation video is in HD</title>
		<link>http://pihlaja.wordpress.com/2008/01/05/now-the-presentation-video-is-in-hd/</link>
		<comments>http://pihlaja.wordpress.com/2008/01/05/now-the-presentation-video-is-in-hd/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 18:00:10 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[003-alpha]]></category>
		<category><![CDATA[screencapture]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2008/01/05/now-the-presentation-video-is-in-hd/</guid>
		<description><![CDATA[You can see it here. Click the right corner to see it in fullscreen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=19&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can see it <a href="http://www.vimeo.com/471546" title="Pihlaja 003 presentation video in HD">here</a>. Click the right corner to see it in fullscreen.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=19&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2008/01/05/now-the-presentation-video-is-in-hd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;ve quit coding for a year</title>
		<link>http://pihlaja.wordpress.com/2007/12/19/ive-quit-coding-for-a-year/</link>
		<comments>http://pihlaja.wordpress.com/2007/12/19/ive-quit-coding-for-a-year/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 13:32:17 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2007/12/19/ive-quit-coding-for-a-year/</guid>
		<description><![CDATA[Lately I&#8217;ve realized that coding takes a bit too much time from my life. I&#8217;ve admitted to myself that I&#8217;m addicted to coding, coding websites, blogs, news, IRC etc. It all started with me wanting to get Pihlaja working. I did almost succeed in making it usable. The only thing missing is the export. And [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=18&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve realized that coding takes a bit too much time from my life. I&#8217;ve admitted to myself that I&#8217;m addicted to coding, coding websites, blogs, news, IRC etc. It all started with me wanting to get Pihlaja working.</p>
<p>I did almost succeed in making it usable. The only thing missing is the export. And I got export &#8220;working&#8221; in a simple example program (which is in the /demos/gstreamer/encoding/ folder of the gtkD temporary git repo in repo.or.cz). Well, atleast it exported some video. Not the one that I wanted, but something similar anyway. So, I was quite pleased with how the 6 months went. I&#8217;m not disappointed at that at all.</p>
<p>Anyway. I&#8217;m not a coder. Coding in D is my hobby. I don&#8217;t get any income from it, and it is not my dream future profession. I have no education for it whatsoever. So, it&#8217;s a bit troublesome for me, when coding takes about 80% of my time. During the last year, I have not read any books (well, a couple in prison, when I wasn&#8217;t allowed to have a computer), I haven&#8217;t written any essays to my school. I have not seen and talked to people as often as I should have. And now that I&#8217;ve also started with a new job, the time I have for other things just isn&#8217;t enough. Not to mention having a 2 and a half year old child&#8230; <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, to put it briefly: I&#8217;m quitting coding for one year®. Let&#8217;s say that I won&#8217;t be coding until 1.1.2009 or something like that. I&#8217;ll also stop manically checking for updates to planet.gnome.org, dsource forums and osnews.com every three minutes. I&#8217;ll try to stop reading them. I&#8217;ll also stop going to IRC, as now I don&#8217;t have anything to ask there&#8230;</p>
<p>That means my projects: Pihlaja and gstreamerD will be put on hold. Feel free to ask me for rights to commit to the subversion of Pihlaja in DSource. You can take over for the time being. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Hope I&#8217;ll get back to coding Pihlaja with a little bit more sanity in 2009.</p>
<p>While not coding I&#8217;m going to get finished with my school, make a shortfilm, read books, write poems, draw and be with people.</p>
<p>P.S: I had a little side project the other day, and wrote a <a href="http://en.wikipedia.org/wiki/Demoscene" title="Demoscene defined in wikipedia">demo</a> in D/OpenGL/SDL/gstreamerD/Linux. It finished 7th  in <a href="http://www.altparty.org/">the Alternative Party 2007</a>. <a href="http://www.scene.org/file.php?file=%2Fparties%2F2007%2Faltparty07%2Fresults.txt&amp;fileinfo">Results</a>. Get <a href="http://www.scene.org/file.php?file=%2Fparties%2F2007%2Faltparty07%2Fdemo%2Ffrequency_bush_by_reuna.tgz&amp;fileinfo">the binary and the code</a> (which is impossible to compile and is not final). The binary is for Ubuntu Feisty, contrary to the results file. It&#8217;s not a good demo, but it&#8217;s my first, and made with D.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=18&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2007/12/19/ive-quit-coding-for-a-year/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
		<item>
		<title>Just a screenshot to keep things looking like somethings happening</title>
		<link>http://pihlaja.wordpress.com/2007/08/24/just-a-screenshot-to-keep-things-looking-like-somethings-happening/</link>
		<comments>http://pihlaja.wordpress.com/2007/08/24/just-a-screenshot-to-keep-things-looking-like-somethings-happening/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 22:14:06 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[gtkD]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[tango]]></category>
		<category><![CDATA[user-interface]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2007/08/24/just-a-screenshot-to-keep-things-looking-like-somethings-happening/</guid>
		<description><![CDATA[It seems I haven&#8217;t posted a screenshot in a long time. So, here goes. This one shows the &#8220;fullscreen&#8221; mode that I added this week. Nothing much there, but it&#8217;s nice to have some more room for the video monitor. Hmm. I think I need some audio monitors there too. There&#8217;s also some little polishing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=17&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/97207134@N00/1216413443/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1301/1216413443_5058d33e5e_o.png" alt="pihlaja003b_24_08_2007" height="250" width="400" /></a></p>
<p>It seems I haven&#8217;t posted a screenshot in a long time. So, here goes. This one shows the &#8220;fullscreen&#8221; mode that I added this week. Nothing much there, but it&#8217;s nice to have some more room for the video monitor. Hmm. I think I need some audio monitors there too. There&#8217;s also some little polishing on the widget&#8217;s layout to get some more space for the monitor. The timecode display was moved to the bottom statusbar. Hmm. I wonder if that&#8217;s a good idea. It saves space. I&#8217;ll keep it there for a while, and see how it feels. Also the &#8220;media buttons&#8221; &#8211; play, pause, rewind etc. &#8211; moved to the center toolbar. Now you can pretty much get almost a fullscreen viewing experience when you move the panes to their maximums. Maybe I&#8217;ll put that to the next video demonstration. That&#8217;ll be out somewhere in 6 months during the next release&#8230; <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Lots of functionality still missing. I should rewrite SceneChain and Track. Unify them into a class called Sequence!(T). Well, I&#8217;ll see if that&#8217;s possible.</p>
<p>Ok. Lots of things happened. But not that much to Pihlaja. Updated to Feisty Fawn finally. Updated to new version of Tango. Less crashes, I hope. Crashes immediately if I use console output, so that issue has reversed itself! Can&#8217;t use the newest version of gtkD. Gradually learning to use git and changing Pihlaja to use that too. Should really end Pihlaja development and start doing my &#8220;final work&#8221;. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=17&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2007/08/24/just-a-screenshot-to-keep-things-looking-like-somethings-happening/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>

		<media:content url="http://farm2.static.flickr.com/1301/1216413443_5058d33e5e_o.png" medium="image">
			<media:title type="html">pihlaja003b_24_08_2007</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m back</title>
		<link>http://pihlaja.wordpress.com/2007/07/25/im-back/</link>
		<comments>http://pihlaja.wordpress.com/2007/07/25/im-back/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 12:42:44 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[gstreamerD]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2007/07/25/im-back/</guid>
		<description><![CDATA[I was freed from prison on sunday morning. I&#8217;m happy that I&#8217;m not there anymore. Twenty days is a long time, when you&#8217;re inside. I&#8217;ve noticed that Pihlaja stops crashing doesn&#8217;t crash as often when I use it from a console, and have most of the debug output enabled. It seems that if seeks and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=16&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was freed from prison on sunday morning. I&#8217;m happy that I&#8217;m not there anymore. Twenty days is a long time, when you&#8217;re inside.</p>
<p>I&#8217;ve noticed that Pihlaja <strike>stops crashing</strike> <em>doesn&#8217;t crash as often</em> when I use it from a console, and have most of the debug output enabled. It seems that if seeks and some other GStreamer calls happen too fast, it will crash. But when it does debug output on the console on every call, it slows it down, and the crashes disappear. Hmm. I&#8217;m not sure how to deal with this problem&#8230; How to limit the amount of gstreamer calls being made&#8230;? I can just leave the debug output on, but if the user doesn&#8217;t start Pihlaja from the console, there will be crashes, so it&#8217;s not a complete solution&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=16&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2007/07/25/im-back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
		<item>
		<title>Pihlaja 003 alpha released</title>
		<link>http://pihlaja.wordpress.com/2007/07/01/pihlaja-003-alpha-released/</link>
		<comments>http://pihlaja.wordpress.com/2007/07/01/pihlaja-003-alpha-released/#comments</comments>
		<pubDate>Sun, 01 Jul 2007 18:40:04 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[003-alpha]]></category>
		<category><![CDATA[d]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[gstreamerD]]></category>
		<category><![CDATA[gtkD]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[projectchooser]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[xoverlay]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2007/07/01/pihlaja-003-alpha-released/</guid>
		<description><![CDATA[I tried to embed this video, but it didn&#8217;t work out, but you can click the link. It&#8217;s a small three minute example showing the Pihlaja user interface and even a crash in the middle. Release notes for Pihlaja 003 alpha (”Well, it&#8217;s a start of some sort”) Six months (or four years if you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=15&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom:0;">I tried to embed <a href="http://www.veoh.com/videos/v727072WkxZytj7" title="Pihlaja 003 alpha promo video"><strong>this video</strong></a>, but it didn&#8217;t work out, but you can click the link. It&#8217;s a small three minute example showing the Pihlaja user interface and even a crash in the middle.</p>
<p style="margin-bottom:0;"><font size="3"><strong>Release notes for Pihlaja 003 alpha (”Well, it&#8217;s a start of some sort”)</strong></font></p>
<p style="margin-bottom:0;"><font size="3">Six months (or four years if you count the earlier versions) of work has culminated into this very buggy and crashy piece of software that is called Pihlaja. <a href="https://sourceforge.net/project/showfiles.php?group_id=85992" title="Pihlaja 003 alpha binary release download">You can get the binary for Ubuntu Feisty Fawn from the sourceforge page</a>. I really hope I haven&#8217;t forgotten anything in this busy process. The source is there too, and in the svn over www.dsource.org. Hope it works! Some more release notes will follow in the end of this post. But first for a small update on my life, and a small appeal: </font></p>
<p style="margin-bottom:0;"><title></title>   	 	 	 	 	 	 	 	 	<!-- 		@page { size: 21cm 29.7cm; margin: 2cm } 		P { margin-bottom: 0.21cm } 	--></p>
<p style="margin-bottom:0;">This alpha release comes just before a weird period starts in my life: The Finnish state is putting me to <a href="http://www.vankeinhoito.fi/uploads/wyin31kghf.jpg">prison</a> for three weeks. I&#8217;m not kidding.</p>
<p style="margin-bottom:0;">The reason for this is that in Finland there is an obligatory military service for all men (excluding Jehova&#8217;s witnesses), it&#8217;s duration is either 6 months, 8 months or 12 months. I want to emphasize that a large majority of the people who go to military service get the 6 months. Only some special areas demand the longer 8 or 12 months. Then there&#8217;s also the alternative service called ”civilian service” for conscientious objectors (like me). It&#8217;s duration is 13 months, which is considered a punishment for not doing military service, and to keep people from going to civilian service. Most people choose the (propably) 6 months military service instead of the 13 months alternative. Yet there are some thousands of people who still go to civilian service each year..</p>
<p style="margin-bottom:0;">I started my civilian service some three years ago, and stopped it after 11 and a half months as a protest to the punishmental duration of civilian service, and the fact that conscientious objectors are released from the military only during peace time. I had 41 days before my service would have ended.</p>
<p style="margin-bottom:0;">A long juridical process started and I eventually had my trial a couple of months ago. I was convicted quilty of ”civilian service crime”, and (as is the standard) the court ordered me to jail for half of my remaining service, which (rounded to full days) was 20 days. I complained to the upper court level, but the result didn&#8217;t change. And now I&#8217;m starting at the Kerava prison on 3th of July. It is a normal closed prison. (In Finland there are also so called ”open prisons”, where non-violent prisoners who have done less serious crimes might be able to get to.) So for the next three weeks I will not be able to code on Pihlaja and I&#8217;ll only be able to see my two year old daughter during visiting hours on the weekends. I&#8217;ll propably spend my time mostly reading books.</p>
<p style="margin-bottom:0;">Since 1999 Amnesty international has considered Finnish ”total objectors” as prisoners of conscience, because of the punitive length of the civilian service. Also in the recent years many international bodies (including UN&#8217;s Human Rights Committee) have demanded Finland to take measures to improve the legislation concerning conscientious objectors. There are about 50 people going to jail each year as ”total objectors”. Some of them have to spend 6 and a half months in a prison, if they don&#8217;t even start doing any civilian service at all.  More info about these issues is available <a href="http://www.aseistakieltaytyjaliitto.fi/en-index.html">here.</a></p>
<p style="margin-bottom:0;">If you too feel like that this punishment that I&#8217;m getting is a bit over the top, then I&#8217;d like to ask you to take up a little of your time to write one letter (or even a postcard) to either</p>
<p style="margin-bottom:0;">A) a random member of the Finnish parliament, who could decide to end this</p>
<p style="margin-bottom:0;">Pick a random parlamentarian from <a href="http://www.eduskunta.fi/triphome/bin/hex3000.sh?LAJITNIMI=$&amp;kieli=en" title="List of finnish parliamentarians">this list</a>, and send the letter to this address:</p>
<p style="margin-bottom:0;"><em>firstname lastname</em><br />
Eduskunta, Parliament of Finland<br />
00102 HELSINKI<br />
FINLAND</p>
<p style="margin-bottom:0;">or</p>
<p style="margin-bottom:0;">B) a random member of the European parliament, who could pressure Finnish parliamentarians to act on this issue. You can find contact information from: <a href="http://www.europarl.europa.eu/">http://www.europarl.europa.eu</a></p>
<p style="margin-bottom:0;">I don&#8217;t think it would be good that the letter&#8217;s would all be the same, so I won&#8217;t make any example texts, so you&#8217;d might have to write it yourself. But if you do take the time to write one, then me (and yearly about 50 young finnish men, who are put to jail as prisoners of conscience) would much appreciate it. Thank you!</p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;">But back to the Pihlaja release notes:</p>
<p style="margin-bottom:0;"><font size="3">Here&#8217;s a list of issues and a guide to survival:</font></p>
<p style="margin-bottom:0;"><font size="3"><strong>Installing (is that even possible?)</strong></font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">You can get Pihlaja binaries from the sourceforge site. I&#8217;ve put the compiling from source section to the end, as that&#8217;s kind of hard to do, really. But you can get the source from svn in www.dsource.org.</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3"><strong>What you can do</strong></font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">When you start Pihlaja, you are greeted with a <strong>project chooser dialog</strong>. Pihlaja is one of those nasty programs that manage your files for you. Currently you can&#8217;t even override that. So there&#8217;s no ”save as”. There is an autosave every 5 minutes. Ignore the users section, as it doesn&#8217;t affect anything yet, and focus on the projects section. You can alternatively edit the name of the ”New untitled project” into something meaningfull, or you can just select it and click OK, in which case it will ask the name in a dialog. If Pihlaja doesn&#8217;t crash before it closes you will find your project here the next time you start Pihlaja.</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">Now the <strong>project window</strong> opens up. On the left you have a list of all the movies, materials and bins in your project. On the right there&#8217;s some room for the <strong>monitor</strong>. And the lower part of the window is reserved for the <strong>editing canvas</strong>. On the editing canvas you can see two rectangles right next to each other, the <strong>”Start”</strong> and the <strong>”End”</strong> rectangle. Below the list of the movies, materials and bins you have a big button labeled ”Import material&#8230;”. Click on that and you&#8217;re presented with a <strong>file chooser dialog</strong> letting you to choose one or more files to import. Be sure to only import files with DV content (.dv, .mov and .avi should be fine as long as their contents are DV. I haven&#8217;t tested .avi myself though. I just tested some Quicktime files, and found out that when exporting from Final Cut Pro, you&#8217;ll have to ”export using quicktime conversion” and make the sound linear PCM with <strong><em>little endian</em></strong><span style="font-style:normal;">. The default seems to be big endian and that doesn&#8217;t seem to work with Pihlaja</span>). You can double click on files you want to import. When you&#8217;re done, you must click the <strong>close button</strong> (this way you can import many files easily).</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">If you&#8217;re lucky, your files will get recognized correctly and they&#8217;ll end up in the list. Now you should drag a file (or <strong>material </strong>in Pihlaja terminology) into the <strong>editing canvas</strong>. Bing. It&#8217;s there. And it hopefully didn&#8217;t crash, as it has never crashed for me at this stage! But you never know. Drag two more files somewhere else on the canvas. The objects that you just created that look like windows of an operating system are called <strong>scenes</strong> in Pihlaja. The scenes you created only contain two <strong>tracks</strong>, one video, one audio (if all went well). The tracks contain only one <strong>edit</strong> or <strong>clip</strong> each at this stage (haven&#8217;t yet decided on that terminology, as I&#8217;m not sure what those should be called in english. Feedback is welcome). The scenes could contain more edits, but let&#8217;s forget that, as that side of Pihlaja is not really working reliably yet (what part of Pihlaja <em>is</em> working reliably – one might ask).</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">The scene has a white <strong>ruler</strong> on it&#8217;s middle, separating the video and audio tracks. You can click on the ruler to see how buggy Pihlaja is this time. If you&#8217;re really really lucky, you&#8217;ll see a monitor appear on the right (Oh, it might have appeared there before too). Press <strong>space</strong> on the keyboard to make the scene play and to pause again. You can use the <strong>arrow keys</strong> to move around. Left and right for 1 frame and up and down for 10 frames movement.</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">There&#8217;s two ways to edit in Pihlaja. </font></p>
<p style="margin-bottom:0;"><font size="3">1. You can grab the scene ”windows” from their headers, and put them one after each other (they&#8217;ll snap, and then you just release) to form <strong>chains</strong> of scenes. </font></p>
<p style="margin-bottom:0;"><font size="3">2. Or you can move your mouse a little left from the ruler of a scene, to the outside of the ”scene window”, and from there start dragging a link to another scene. This way you can connect scenes, as if they we&#8217;re nodes.</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">Much of this doesn&#8217;t work the way it&#8217;s supposed to yet, so you can&#8217;t really reorder them or relink them, after you&#8217;ve done it the first time. So, you can just put them together, and watch the result. Trimming the scenes doesn&#8217;t work yet. And I didn&#8217;t get the export working yet, so that put&#8217;s Pihlaja in the &#8220;not really usable for anything&#8221; -category. </font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3"><strong>A list of things not to do (feel free to do them if you want to test the limits)</strong></font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<ul>
<li>
<p style="margin-bottom:0;"><font size="3">Holding 	your mouse button pressed and moving it on the Ruler might sometimes 	result in Pihlaja crashing while it has grabbed the mouse. This will 	make your system look like it&#8217;s crashed, but it&#8217;s not. You should 	avoid dragging on the ruler to avoid this, but if you happen to come 	to crash while dragging, then do the following (you should write 	this down on a piece of paper): <em><strong>CTRL-ALT-F4</strong> to create a 	new terminal session(?). Log in with your username. Write: ”<strong>ps 	-x</strong>”. This will list the running processes. Locate Pihlaja on 	the list and look it&#8217;s process id – it should be the first number 	in the front. Then write: ”<strong>kill 8712</strong>” &#8211; and replace the 	8712 with the number of the Pihlaja process you just checked with ps 	-x. <strong>CTRL-ALT-F7</strong> to get back to your X session.</em> Great! Now 	it&#8217;s working again.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Don&#8217;t do anything 	that you&#8217;d think should work. It will propably not work, or it will 	crash.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Saving works, but 	loading can be a little unreliable. So don&#8217;t do any real work with 	this version.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Sometimes your 	monitor might disappear, because of screensaver or some window 	blocking it. You usually can move the pane handles(?) to resize the 	monitor so it will be redrawn. (This is a bug with me not getting 	the expose event handled correctly with the xoverlay.)</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">You should propably 	avoid using multiple movies, or selecting the materials. So, just 	use that one movie, and test editing the scenes and scenechains with 	that. Selecting other movies will eventually lead to crashes, and 	before that you&#8217;ll propably not be able to select scenes and see 	them in the monitor anymore. (So, sometimes the gstreamer pads don&#8217;t 	get connected correctly. This is propably my fault, because of not 	fully understanding how to do stuff correctly.)</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Changing the scenes 	order doesn&#8217;t work yet.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Editing the 	edits/clips inside the scene doesn&#8217;t work that great yet, so don&#8217;t 	do it.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Trimming the edits 	isn&#8217;t good, so forget about that too, for now.</font></p>
</li>
</ul>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">A huge thanks to the freenode channels #d, #d.tango and #gstreamer for much appreciated help on various issues. Pihlaja reuses some code from the <a href="http://www.pitivi.org" title="Pitivi video editor">Pitivi</a> project and heavily relies on <a href="http://gnonlin.sourceforge.net/" title="Gnonlin GStreamer plugin">Gnonlin</a> for it&#8217;s functionality, so a big thank you goes out to bilboed.</font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3"><strong>Compiling from source</strong></font></p>
<p style="margin-bottom:0;">&nbsp;</p>
<p style="margin-bottom:0;"><font size="3">Umm. It might be hard. But here&#8217;s a list of what you need:</font></p>
<p style="margin-bottom:0;"><font size="3">Get the Pihlaja 003 alpha source package from sourceforge. It will also include my personal branch of gtkD and gstreamerD, because I didn&#8217;t have the time to merge it with the official version found from <a href="http://www.dsource.org/">www.dsource.org</a>. Pihlaja only works on Linux. Some other Unixes might work too. I&#8217;m currently using Ubuntu 6.10 Dapper Drake (never had the time to backup my files and update).</font></p>
<ul>
<li>
<p style="margin-bottom:0;"><font size="3">You 	should have the usual GCC stuff installed. You also need GStreamer 	(and the plugins) and Gnonlin installed.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Get 	the DMD D compiler from <a href="http://www.digitalmars.com/d">www.digitalmars.com/d</a>. 	I&#8217;m currently using version 1.014. To be sure, get that version. 	Don&#8217;t get the experimental 2.0 beta version. (You might also try <a href="http://dgcc.sourceforge.net/" title="GDC D compiler">GDC</a>, but it appears there&#8217;s not yet a version that matches DMD 1.014. But it might work anyway&#8230; Haven&#8217;t tested it yet.)<br />
</font></li>
<li>
<p style="margin-bottom:0;"><font size="3">Get 	DSSS from <a href="http://www.dsource.org/">www.dsource.org</a>. Try 	to find some installation instructions. </font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">Get 	the Tango library from <a href="http://www.dsource.org/">www.dsource.org</a>. 	There&#8217;s propably a way to install Tango with DSSS too, so if you 	find that, you can use it. It will be easier. It has something to do 	with <strong>dsss net install tango</strong>, but I&#8217;ve never used it yet.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">You 	also need the Tangobos library. You can propably install that with 	<strong>dsss net install</strong>, somehow.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">In 	the dir where you&#8217;ve got the patched version of gtkD and gstreamerD, 	run command: <strong>dsss build</strong>. If that finishes without errors, and 	you&#8217;ve got libraries called libSgtkD.a and libSgstreamerD.a, then 	you can run the command: <strong>sudo dsss install</strong>.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">In 	the Pihlaja directory called pihlaja/src/ again run command: <strong>dsss 	build</strong>. You don&#8217;t have to run install. After you&#8217;ve made some 	changes to the code, you should run <strong>dsss clean</strong> and after that 	<strong>dsss build </strong>to build it again. Run ../pihlaja to try it out.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><font size="3">The 	build process will be much more simpler after I&#8217;ll find the time to 	merge with the official branch of gtkD, which doesn&#8217;t need Tangobos. 	Hopefully it will be as easy as <strong>dsss net install pihlaja</strong>.</font></p>
</li>
<li>
<p style="margin-bottom:0;"><span><font size="3">To 	get the latest Pihlaja source after this release you can do<font face="Nimbus Roman No9 L, serif">:</font></font></span></p>
<p style="margin-bottom:0;"><tt><strong><font size="3"><font face="Nimbus Roman No9 L, serif">svn 	co </font></font></strong><strong><font size="3"><font face="Nimbus Roman No9 L, serif">http://svn.dsource.org/projects/pihlaja</font></font></strong></tt></p>
</li>
</ul>
<p style="margin-bottom:0;"><tt><span><font size="3"><font face="Nimbus Roman No9 L, serif">Some Pihlaja related websites (ideally there should be only one):<br />
<a href="http://pihlaja.wordpress.org/">http://pihlaja.wordpress.org</a> The Pihlaja development blog is the number one source of information regarding Pihlaja development and news.<br />
<a href="http://www.pihlaja.org/">http://www.pihlaja.org</a> This is going to be a promotional site for using Pihlaja. Currently it just links to the old sourceforge pages.<br />
<a href="https://sourceforge.net/project/showfiles.php?group_id=85992">https://sourceforge.net/project/showfiles.php?group_id=85992</a> The sourceforge page is currently used for binary releases, but that might change in the future.<br />
<a href="http://www.dsource.org/projects/pihlaja">http://www.dsource.org/projects/pihlaja</a> Development wiki and subversion repository.<br />
<a href="http://www.dsource.org/forums/viewforum.php?f=132">http://www.dsource.org/forums/viewforum.php?f=132</a> Pihlaja forums for all feedback and questions.</font></font></span></tt></p>
<p style="margin-bottom:0;">&nbsp;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=15&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2007/07/01/pihlaja-003-alpha-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
		<item>
		<title>XOverlay is (almost) working now. Export is next.</title>
		<link>http://pihlaja.wordpress.com/2007/06/28/xoverlay-and-dynamic-pads-are-working-now-export-is-next/</link>
		<comments>http://pihlaja.wordpress.com/2007/06/28/xoverlay-and-dynamic-pads-are-working-now-export-is-next/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 09:24:10 +0000</pubDate>
		<dc:creator>pihlaja</dc:creator>
				<category><![CDATA[gstreamerD]]></category>
		<category><![CDATA[gtkD]]></category>
		<category><![CDATA[pads]]></category>
		<category><![CDATA[plan]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[xoverlay]]></category>

		<guid isPermaLink="false">http://pihlaja.wordpress.com/2007/06/28/xoverlay-and-dynamic-pads-are-working-now-export-is-next/</guid>
		<description><![CDATA[Now the xoverlay works finally (and the dynamic pads are solved too, if you missed the comment I wrote on the &#8220;Not yet&#8221;-post.)(UPDATE: Nope. The dynamic pads are initially connected correctly now, but as soon as the user tries to switch to another movie and then back again to the original one, the pads don&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=14&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now the xoverlay works finally (<strike>and the dynamic pads are solved too, if you missed the comment I wrote on the &#8220;Not yet&#8221;-post</strike>.)(<em>UPDATE: Nope. The dynamic pads are initially connected correctly now, but as soon as the user tries to switch to another movie and then back again to the original one, the pads don&#8217;t get connected. And when the user repeats this action once more, the program crashes</em>). It was really difficult and my current branch of gtkD and gstreamerD are quite hand edited on some parts now. I&#8217;m not sure how to do some of that stuff automatically with gtkWrapper, but it doesn&#8217;t matter on the functionality part.<br />
The only thing not quite working with the xoverlay is the expose(). For some reason it doesn&#8217;t really have an effect, and if some other window overlaps it, there will be hole in the video overlay. So you&#8217;ll have to resize the monitor widget to get it working normally again. But that&#8217;s of minor importance for now. (Thanks to many people over at #gstreamer and #d).</p>
<p>Next is export. I hope I get it sorted out by 30th. The release is going to be a wacky binary release inside a tar.bz. And you&#8217;ll propably need to put the two libraries (libgtkD and libgstreamerD) to somewhere inorder for it to work (And it will also be made on Ubuntu Dapper, but I&#8217;ve tested that it works on Feisty too). I&#8217;ll also release my branch of gtkD and gstreamerD as a tar.bz, as I don&#8217;t have time to merge it with the official version now. The release will be almost usable for something, but totally alpha. But you&#8217;ll hopefully be able to see some <strike>good</strike>(<em>UPDATE: mediocre <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em> ) stuff there too.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pihlaja.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pihlaja.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pihlaja.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pihlaja.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pihlaja.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pihlaja.wordpress.com&amp;blog=1055143&amp;post=14&amp;subd=pihlaja&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pihlaja.wordpress.com/2007/06/28/xoverlay-and-dynamic-pads-are-working-now-export-is-next/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc976b7111155816de23d6396f3f6b18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pihlaja</media:title>
		</media:content>
	</item>
	</channel>
</rss>
