<?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>Gert-Jan's ramblings</title>
	<atom:link href="http://dejonge.tv/feed" rel="self" type="application/rss+xml" />
	<link>http://dejonge.tv</link>
	<description>A weblog with musings from the daily live of Gert-Jan.</description>
	<lastBuildDate>Tue, 02 Dec 2008 21:37:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Update on using my zm_remote_camera.cpp replacement</title>
		<link>http://dejonge.tv/archives/18</link>
		<comments>http://dejonge.tv/archives/18#comments</comments>
		<pubDate>Tue, 02 Dec 2008 21:04:03 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/18</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/18"></g:plusone></div>
At this moment i see some problems with the rtsp code as used in ffmpeg. best solution to use rtsp camera&#8217;s at the moment is the openRTSP work around: 1. create a pipe ( f.e. mkpipe /tmp/pipes/achterterrein.pipe ) 2. change owner of pipe to the user you use for running zoneminder (f.e. chown nobody /tmp/pipes/achterterrein.pipe [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/18"></g:plusone></div>
<p>At this moment i see some problems with the rtsp code as used in ffmpeg.</p>
<p>best solution to use rtsp camera&#8217;s at the moment is the openRTSP work around:<br />
1. create a pipe ( f.e. mkpipe /tmp/pipes/achterterrein.pipe )<br />
2. change owner of pipe to the user you use for running zoneminder (f.e. chown nobody /tmp/pipes/achterterrein.pipe )<br />
3. use the path to the pipe as input path for the camer, enter camera ip en port number dummy values.<br />
4. start openRTSP to stream video to the pipe</p>
<p>I put my openRTSP commands in the inittab, so they are automatically restarted, check your own camera&#8217;s so your buffer is large enough:<br />
g1:3:respawn:/usr/bin/openRTSP -t -b 40000 -v rtsp://x.x.x.x/mpeg4/media.amp &gt; /tmp/pipes/achterterrein.pipe<br />
g2:3:respawn:/usr/bin/openRTSP -t -b 100000 -v rtsp://x.x.x.x/live.sdp &gt; /tmp/pipes/mpeg4.pipe<br />
g3:3:respawn:/usr/bin/openRTSP -t -b 100000 -v rtsp://x.x.x.x/live.sdp &gt; /tmp/pipes/lesruimte.pipe</p>
<p>With this work around I have al my rtsp cameras working like a charm. With openRTSP you can also add username and password  [-u &lt;username&gt; &lt;password&gt;].</p>
<p>camera&#8217;s working for me at the moment:<br />
axis 2120,  http://x.x.x.x/mjpg/video.mjpg?resolution=704&#215;576&amp;req_fps=5&amp;.mjpg<br />
axis 2110, http://x.x.x.x/mjpg/video.mjpg?resolution=640&#215;480&amp;req_fps=5&amp;fmt=.mjpg<br />
axis 2100, http://x.x.x.x/mjpg/video.mjpg?resolution=640&#215;480&amp;.mjpg<br />
axis 210,  rtsp://x.x.x.x/mpeg4/media.amp best via openRTSP workaround<br />
Mobotix M1, http://x.x.x.x/cgi-bin/faststream.jpg?.mjpg<br />
Abus T7204 &amp; T7203, rtsp://x.x.x.x/live.sdp best via openRTSP workaround<br />
Sony SNC-M3W, http://x.x.x.x/img/video.asf<br />
<span class="postbody">AVTECH AVI203</span> h264 cam, rtsp://x.x.x.x/live/h264 best via openRTSP workaround</p>
<p>Hope this helps<br />
regards,<br />
Gert-Jan</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg based replacement for zm_remote_camera.cpp in ZoneMinder</title>
		<link>http://dejonge.tv/archives/17</link>
		<comments>http://dejonge.tv/archives/17#comments</comments>
		<pubDate>Thu, 13 Nov 2008 21:53:02 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/17</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/17"></g:plusone></div>
There are a lot of changes coming in the next release especialy with support for other camera&#8217;s in ZoneMinder. But as i am currently using 1.23.3  and i wanted support for mpeg4 camera&#8217;s and also less overhead in mjpeg camera&#8217;s, I have put together a replacement version of zm_remote_camera.cpp. With this version i can support [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/17"></g:plusone></div>
<p>There are a lot of changes coming in the next release especialy with support for other camera&#8217;s in ZoneMinder. But as i am currently using 1.23.3  and i wanted support for mpeg4 camera&#8217;s and also less overhead in mjpeg camera&#8217;s, I have put together a replacement version of <a href="http://www.dejonge.tv/download/zm_remote_camera.cpp" title="altered source of zm_remote_camera.cpp">zm_remote_camera.cpp</a>.</p>
<p>With this version i can support 8 ip camera&#8217;s with a load of 0.6 where in the previous version i only had 6 camera&#8217;s pushing op to a load of 1.5.</p>
<p>You may look at this build as a brute hack, you need to enter the complete camera url in the path setting of the remote camera.The following examples are working for me:</p>
<ul>
<li>rtsp://x.x.x.x/mpeg4/media.amp  (axis,mpeg)</li>
<li>http://x.x.x.x/mjpg/video.mjpg (axis,mjpeg)</li>
<li>rtsp://x.x.x.x/live.sdp</li>
<li>http://x.x.x.x/cgi-bin/faststream.jpg?.mjpg (mobotix,mjpg)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/17/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu gnome nimbus theme for amd64 architecture</title>
		<link>http://dejonge.tv/archives/16</link>
		<comments>http://dejonge.tv/archives/16#comments</comments>
		<pubDate>Thu, 01 Nov 2007 21:53:34 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/16</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/16"></g:plusone></div>
Today i  tried the opensolaris developer release (project Indiana). It looks very promising, i especially liked the used nimbus theme. I wanted to install this theme in my gutsy, but could not find amd64 packages for it. So i build these packages using the guidelines from Make your ubuntu more beautiful. If you need the [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/16"></g:plusone></div>
<p>Today i  tried the opensolaris developer release (project Indiana). It looks very promising, i especially liked the used nimbus theme. I wanted to install this theme in my gutsy, but could not find amd64 packages for it. So i build these packages using the guidelines from <a href="http://www.vinodlive.com/2007/08/20/make-your-ubuntu-desktop-more-beautiful/" title="Make your ubuntu more beautiful">Make your ubuntu more beautiful</a>. If you need the packages you can find them here  :</p>
<ul>
<li><a href="/download/gtk2-engines-nimbus_0.0.6-1_amd64.deb" title="gtk2-engines-nimbus_0.0.6-1_amd64.deb">gtk2-engines-nimbus_0.0.6-1_amd64.deb (46K)</a></li>
<li><a href="/download/nimbus-icon-theme_0.0.6-1_all.deb" title="nimbus-icon-theme_0.0.6-1_all.deb">nimbus-icon-theme_0.0.6-1_all.deb</a> (8.5M)</li>
</ul>
<p>I hope they work for you <img src='http://dejonge.tv/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yawic</title>
		<link>http://dejonge.tv/archives/15</link>
		<comments>http://dejonge.tv/archives/15#comments</comments>
		<pubDate>Mon, 15 Oct 2007 21:16:38 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/15</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/15"></g:plusone></div>
A lot of my time is currently going to Yawic (Yet another web interface class ). Why ? because i can, and it is a lot of fun !]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/15"></g:plusone></div>
<p>A lot of my time is currently going to <a href="http://www.yawic.org/">Yawic</a> (Yet another web interface class ). Why ? because i can, and it is a lot of fun !</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site update</title>
		<link>http://dejonge.tv/archives/14</link>
		<comments>http://dejonge.tv/archives/14#comments</comments>
		<pubDate>Tue, 29 May 2007 19:25:12 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/14</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/14"></g:plusone></div>
Oh, I almost forgot I have upgraded to the latest wordpress, and to test out the widget feature, I switched to another theme. Enjoy !]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/14"></g:plusone></div>
<p>Oh, I almost forgot <img src='http://dejonge.tv/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
<p>I have upgraded to the latest wordpress, and to test out the widget feature, I switched to another theme. Enjoy !</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice mobile PC</title>
		<link>http://dejonge.tv/archives/13</link>
		<comments>http://dejonge.tv/archives/13#comments</comments>
		<pubDate>Tue, 29 May 2007 19:24:06 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/13</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/13"></g:plusone></div>
We finaly got ourselves a mobile PC, and it&#8217;s Linux based ! www.pepperpad.com I cannot really compare it with one of the UMPC&#8217;s mentioned below, but it&#8217;s really a great device.]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/13"></g:plusone></div>
<p>We finaly got ourselves a mobile PC, and it&#8217;s Linux based !<br />
<a href="http://www.pepperpad.com"><br />
www.pepperpad.com</a></p>
<p>I cannot really compare it with one of the UMPC&#8217;s mentioned below, but it&#8217;s really a great device.</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpwebgallery 1.7</title>
		<link>http://dejonge.tv/archives/12</link>
		<comments>http://dejonge.tv/archives/12#comments</comments>
		<pubDate>Tue, 29 May 2007 18:42:21 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/12</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/12"></g:plusone></div>
Update my phpwebgallery to 1.7, started playing around with the different plugins that are available. RV maps &#038; earth for google maps and google earth integration are really great !. Also installed Stats_IP_excluder, but only got it to work after changeing the real callback function ( using * in stead of % as wildcard in [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/12"></g:plusone></div>
<p>Update my phpwebgallery to 1.7, started playing around with the different plugins that are available. RV maps &#038; earth for google maps and google earth integration are really great !.</p>
<p>Also installed Stats_IP_excluder, but only got it to work after changeing the real callback function ( using * in stead of % as wildcard in the config ):</p>
<p>if ($this->my_config['ip_activated'])<br />
{<br />
if( preg_match(&#8220;/$Exclusion/&#8221;,$_SERVER['REMOTE_ADDR']) ) $do_log = false;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UMPC, UltraMobile PC&#8217;s overview/compared ? ( Origami project )</title>
		<link>http://dejonge.tv/archives/11</link>
		<comments>http://dejonge.tv/archives/11#comments</comments>
		<pubDate>Thu, 11 Jan 2007 23:23:57 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/11</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/11"></g:plusone></div>
Looking around the web, trying to find a Ultramobile PC, we have a hard time trying to find local reseller, or even some information about what is (or should be) available. Until now we know of the following 5 machines, which are more or less available : Asus R2H ( intel celereon ) tabletkiosk: eo [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/11"></g:plusone></div>
<p>Looking around the web, trying to find a Ultramobile PC, we have a hard time trying to find local reseller, or even some information about what is (or should be) available. Until now we know of the following 5 machines, which are more or less available :</p>
<p><a href="http://asus.com/products.aspx?l1=5&#038;l2=25&#038;l3=350&#038;model=1205&#038;modelmenu=1">Asus R2H</a> ( intel celereon )<br />
<a href="http://www.tabletkiosk.com/tkstore/pc/viewCategories.asp?pageStyle=h&#038;ProdSort=19&#038;idCategory=35&#038;page=1">tabletkiosk</a>:</p>
<ul>
<li>eo UMPC v7110 (via) <a href="http://www.tabletpc2.com/Review-TabletKiosk-eo-V7110-UltraMobilePC%20-%20Article900726.htm">review</a></li>
</ul>
<ul>
<li>eo UMPC i7209 ( intel celeron )</li>
</ul>
<ul>
<li>eo UMPC i7210 ( intel pentium M )</li>
</ul>
<p>samsung Q1 (intel celeron ) <a href="http://www.tabletpc2.com/Review-SamsungQ1UltraMobilePC%20-%20Article90076.htm">review</a></p>
<p><a href="http://www.google.nl/url?sa=t&#038;ct=res&#038;cd=1&#038;url=http%3A%2F%2Fwww.engadget.com%2F2007%2F01%2F07%2Fplaceholder-medion-umpc-confirmed-coming-january-30%2F&#038;ei=Ef2nRf-6B478wAHnlq3tAQ&#038;usg=__bv2Nx_lInd6z1iGR3tfxx6ncu98=&#038;sig2=ccMwe7JMhVfkRdkKVba5tw">medion Via C7 based umpc announced</a></p>
<p><a href="http://www.ultramobilepcs.com/Compare.htm">utramobilepcs.com</a> has a nice feature list comparison of existing umpc hardware.</p>
<p>Until now i have not found a nice review where the main hardware is compared in such a way you can make a good desision on which one to buy.</p>
<h1 />
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpwebgallery 1.6.0</title>
		<link>http://dejonge.tv/archives/10</link>
		<comments>http://dejonge.tv/archives/10#comments</comments>
		<pubDate>Sun, 09 Jul 2006 19:41:17 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/10</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/10"></g:plusone></div>
phpwebgallery 1.6.0 is out with some great new features ! I have updated my stats speed patch and removed my bot check, which i plan to implement in another way.]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/10"></g:plusone></div>
<p>phpwebgallery 1.6.0 is out with some great new features ! I have updated my stats speed <a href="http://www.sfnet.tv/phpwebgallery/patch-stats-1.6.0.diff">patch</a> and removed my bot check, which i plan to implement in another way.</p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpwebgallery stats</title>
		<link>http://dejonge.tv/archives/9</link>
		<comments>http://dejonge.tv/archives/9#comments</comments>
		<pubDate>Sun, 14 May 2006 19:08:54 +0000</pubDate>
		<dc:creator>gertjan</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://dejonge.tv/archives/9</guid>
		<description><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/9"></g:plusone></div>
Of course as it happens i should have a typo in my patch changed it, cleaned my own code, and now the main stat&#8217;s page is also much faster ! I also found different bots changeing the stats of the real viewers (not so many ). Therefore i added a simple check on most seen [...]]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:right;margin-left:1em"><g:plusone href="http://dejonge.tv/archives/9"></g:plusone></div>
<p>Of course as it happens i should have a typo in my patch <img src='http://dejonge.tv/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /> changed it, cleaned my own code, and now the main stat&#8217;s page is also much faster ! I also found different bots changeing the stats of the real viewers (not so many <img src='http://dejonge.tv/smilies/yahoo_wink.gif' alt='&#59;&#41;' class='wp-smiley' width='18' height='18' title='&#59;&#41;' /> ). Therefore i added a simple check on most seen IP&#8217;s from different search bots.<br />
new patch: <a title="patch 2" href="http://www.sfnet.tv/phpwebgallery/patch-stats-1.5.2.diff-v2">patch-stats-1.5.2.diff-v2 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://dejonge.tv/archives/9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

