<?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>macbroadcast´s blog</title>
	<atom:link href="http://macbroadcast.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://macbroadcast.wordpress.com</link>
	<description>Enabling Technologies...we make you stream.</description>
	<lastBuildDate>Mon, 05 Dec 2011 14:01:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='macbroadcast.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/ea79c9da9c791a13bab172abe62fa956?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>macbroadcast´s blog</title>
		<link>http://macbroadcast.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://macbroadcast.wordpress.com/osd.xml" title="macbroadcast´s blog" />
	<atom:link rel='hub' href='http://macbroadcast.wordpress.com/?pushpress=hub'/>
		<item>
		<title>wide area bonjour server setup</title>
		<link>http://macbroadcast.wordpress.com/2009/05/25/wide-area-bonjour-server-setup/</link>
		<comments>http://macbroadcast.wordpress.com/2009/05/25/wide-area-bonjour-server-setup/#comments</comments>
		<pubDate>Mon, 25 May 2009 13:48:45 +0000</pubDate>
		<dc:creator>mac</dc:creator>
				<category><![CDATA[zeroconfiguration]]></category>
		<category><![CDATA[wide area bonjour server setup]]></category>

		<guid isPermaLink="false">http://macbroadcast.wordpress.com/?p=23</guid>
		<description><![CDATA[Set-up goal: &#8212;&#8212;&#8212;&#8212; I have a laptop, whose IP address changes often. So I want it to be reachable on &#8220;mbp-freek.macfreek.nl&#8221;. To do so, it must be able to sent a messages to my DNS server to update the A record for &#8220;mbp-freek.macfreek.nl&#8221;. Since I don&#8217;t want any computer in the world to change it, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=23&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<br />
<blockquote><p>Set-up goal:<br />
&#8212;&#8212;&#8212;&#8212;<br />
I have a laptop, whose IP address changes often. So I want it to be<br />
reachable on &#8220;mbp-freek.macfreek.nl&#8221;. To do so, it must be able to sent<br />
a messages to my DNS server to update the A record for<br />
&#8220;mbp-freek.macfreek.nl&#8221;. Since I don&#8217;t want any computer in the world to<br />
change it, I use a shared secret. My DNS server is mickey.macfreek.nl,<br />
or 145.99.148.35 (IPv4) and 2002:9163:9423::1 (IPv6).</p>
<p>Configuration:<br />
&#8212;&#8212;&#8212;&#8212;&#8211;<br />
I implemented mbp-freek.macfreek.nl as a subdomain of macfreek.nl;<br />
that&#8217;s easier to maintain.</p>
<p>1. First, I need my DNS machine, mickey.macfreek.nl to be the<br />
authoritive domain for the mbp-freek.macfreek.nl subdomain. The<br />
authorative nameservers for macfreek.nl are:<br />
% host -t NS macfreek.nl<br />
      macfreek.nl name server ns3.xel.nl.<br />
macfreek.nl name server ns1.xel.nl.<br />
macfreek.nl name server ns2.xel.nl.</p>
<p>To delegate the mbp-freek.macfreek.nl subdomain to mickey.macfreek.nl, I<br />
make sure that the above name server have the following configuration:<br />
mbp-freek               IN      NS      mickey.macfreek.nl.<br />
mickey                  IN      A               145.99.148.35<br />
mickey                  IN      AAAA            2002:9163:9423::1<br />
(Feel free to ignore the AAAA record &#8212; that&#8217;s only important if you<br />
care about IPv6).</p>
<p>2. The second step is to configure the mbp-freek.macfreek.nl subdomain<br />
at mickey.macfreek.nl. here is the relevant part of my BIND<br />
configuration, found in named.conf:<br />
// service discovery domain<br />
zone &#8220;mbp-freek.macfreek.nl&#8221; {<br />
       type master;<br />
       file &#8220;mbp-freek.macfreek.nl.zone&#8221;;<br />
//      allow-update { any; };<br />
       allow-update { key mbp-freek.macfreek.nl.; };<br />
};</p>
<p>Note that the &#8220;allow-update { any; };&#8221; can be useful for testing: it<br />
would allow anyone in the world to change the DNS configuration, without<br />
a password. That is fine for testing. Obviously, I now commented it out.</p>
<p>I recommend to first set &#8220;allow-update { any; };&#8221; and later add the key<br />
if the basics work fine.</p>
<p>3. As a start, you need to create the zone file<br />
(&#8220;mbp-freek.macfreek.nl.zone&#8221; in my configuration.) Be sure to create it<br />
in the correct directory. If you use BIND, it is typically set with<br />
&#8220;directory &#8220;/etc/bind&#8221;;&#8221; or &#8220;directory &#8220;/var/cache/bind&#8221;;&#8221;</p>
<p>Here is the contents of my zone file:<br />
% cat mbp-freek.macfreek.nl.zone<br />
      $ORIGIN .<br />
$TTL 3600       ; 1 hour<br />
mbp-freek.macfreek.nl   IN SOA  mickey.macfreek.nl.<br />
hostmaster.macfreek.nl. (<br />
                               3203       ; serial<br />
                               10800      ; refresh (3 hours)<br />
                               3600       ; retry (1 hour)<br />
                               604800     ; expire (1 week)<br />
                               60         ; minimum (1 minute)<br />
                               )<br />
                       NS      mickey.macfreek.nl.<br />
$TTL 1  ; 1 second<br />
                       A       146.50.22.53<br />
                       AAAA    2002:3516:3292:1::1<br />
$ORIGIN _dns-sd._udp.mbp-freek.macfreek.nl.<br />
$TTL 3600       ; 1 hour<br />
b                       PTR     mbp-freek.macfreek.nl.<br />
lb                      PTR     mbp-freek.macfreek.nl.<br />
r                       PTR     mbp-freek.macfreek.nl.</p>
<p>Again, create this file with a sensible content. It will be changed on<br />
the fly, but a good start helps a lot. Make sure the file and directory<br />
are writable by your bind daemon.</p>
<p>4. Now, (re)start your bind server:<br />
# /etc/init.d/bind9 restart<br />
(or whatever you use to restart it)</p>
<p>5. Now I have to configure my laptop to tell mickey.macfreek.nl it&#8217;s IP<br />
address every time that changes. I use the Bonjour preference pane for<br />
that. You can download it from <a href="http://www.dns-sd.org/ClientSetup.html">http://www.dns-sd.org/ClientSetup.html</a>.</p>
<p>See the attached screenshot bonjour-config.tiff for my set-up. Note that<br />
I only filled in the &#8220;Hostname&#8221; tab with &#8220;mbp-freek.macfreek.nl&#8221;.<br />
The other tab are unchecked and empty! Also, note that I did not fill in<br />
the name of my DNS server (mickey.macfreek.nl): that is not necessary,<br />
since the Bonjour preference pane finds it by simply querying for the NS<br />
record of &#8220;mbp-freek.macfreek.nl&#8221;. So for my set-up it really is<br />
important that the public reachable DNS server point to my own server,<br />
as explained in set 1.</p>
<p>6. Test if it works. Look in the log of your DNS server. Does the IP<br />
address gets updated. For example, my BIND log reports:<br />
updating zone: deleting rrset at &#8216;mbp-freek.macfreek.nl&#8217; AAAA<br />
updating zone: adding an RR at &#8216;mbp-freek.macfreek.nl&#8217; AAAA<br />
updating zone: deleting rrset at &#8216;mbp-freek.macfreek.nl&#8217; A<br />
updating zone: adding an RR at &#8216;mbp-freek.macfreek.nl&#8217; A<br />
updating zone: deleting an RR<br />
(Note: I trimmed the log lines a bit for readability, and had to<br />
increase the log verbosity for them to show up).</p>
<p>7. If it works fine, create a shared secret.<br />
dnssec-keygen -a HMAC-MD5 -b 128 -n host mbp-freek.macfreek.nl.</p>
<p>Copy the key (which looks like &#8220;&#8221;)<br />
And add it to your named.conf file:<br />
key mbp-freek.macfreek.nl. {<br />
       algorithm hmac-md5;<br />
       secret &#8220;i94NgCObg/1t0NtauLB+QQ==&#8221;;<br />
};<br />
Also make sure the key is required to update the zone file:<br />
zone &#8220;mbp-freek.macfreek.nl&#8221; {<br />
       type master;<br />
       file &#8220;mbp-freek.macfreek.nl.zone&#8221;;<br />
       allow-update { key mbp-freek.macfreek.nl.; };<br />
};<br />
(remove the &#8220;allow-update {any;};&#8221; if it&#8217;s still there.<br />
finally, add the key to the Bonjour preference pane. You can do so by<br />
clicking the &#8220;Password&#8230;&#8221; button in the &#8220;Hostname&#8221; tab.</p>
<br /> Tagged: wide area bonjour server setup <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/macbroadcast.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/macbroadcast.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/macbroadcast.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=23&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://macbroadcast.wordpress.com/2009/05/25/wide-area-bonjour-server-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f189cb7dbf5ad43eb5fa568e1e9aba50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">macbroadcast</media:title>
		</media:content>
	</item>
		<item>
		<title>Scenes from the recession &#8211; The Big Picture &#8211; Boston.com</title>
		<link>http://macbroadcast.wordpress.com/2009/03/18/scenes-from-the-recession-the-big-picture-bostoncom/</link>
		<comments>http://macbroadcast.wordpress.com/2009/03/18/scenes-from-the-recession-the-big-picture-bostoncom/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 23:59:45 +0000</pubDate>
		<dc:creator>mac</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://macbroadcast.wordpress.com/2009/03/18/scenes-from-the-recession-the-big-picture-bostoncom/</guid>
		<description><![CDATA[Scenes from the recession &#8211; The Big Picture &#8211; Boston.com Posted using ShareThis<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=20&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.boston.com/bigpicture/2009/03/scenes_from_the_recession.html">Scenes from the recession &#8211; The Big Picture &#8211; Boston.com</a></p>
<p>Posted using <a href="http://sharethis.com">ShareThis</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/macbroadcast.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/macbroadcast.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/macbroadcast.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=20&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://macbroadcast.wordpress.com/2009/03/18/scenes-from-the-recession-the-big-picture-bostoncom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f189cb7dbf5ad43eb5fa568e1e9aba50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">macbroadcast</media:title>
		</media:content>
	</item>
		<item>
		<title>Introducing ” I want my MTV!</title>
		<link>http://macbroadcast.wordpress.com/2009/02/15/introducing-%e2%80%9d-i-want-my-mtv/</link>
		<comments>http://macbroadcast.wordpress.com/2009/02/15/introducing-%e2%80%9d-i-want-my-mtv/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 13:03:10 +0000</pubDate>
		<dc:creator>mac</dc:creator>
				<category><![CDATA[openCU]]></category>
		<category><![CDATA[ipv6.multicast]]></category>
		<category><![CDATA[mtv]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://macbroadcast.wordpress.com/?p=3</guid>
		<description><![CDATA[The Internet is great, instead of just TV and newspapers we have a &#8220;back channel&#8221; &#8211; so we are able to &#8220;respond&#8221; immediately and &#8220;interact&#8221; in an entire network, It’s like a democratic network, anybody who can connect , may participate. ( First LIVE speech over cuseeme of an american democratic president , Audio1.aif, Audio2.aif [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=3&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>The Internet is great, instead of just TV and newspapers we have a &#8220;back channel&#8221; &#8211; so we are able to &#8220;respond&#8221; immediately and &#8220;interact&#8221; in an entire network, It’s like a democratic network, anybody who can connect , may participate.<br />
( First LIVE speech over <strong>cuseeme</strong> of an <a href="http://www.techcrunch.com/2009/01/21/the-day-live-web-video-streaming-failed-us/" target="_blank&quot;">american democratic president </a>, <a href="http://opencu.sourceforge.net/bill2.aif" target="_blank&quot;">Audio1.aif</a>, <a href="http://opencu.sourceforge.net/bill8.aif" target="_blank&quot;">Audio2.aif</a> , <a href="http://opencu.sourceforge.net/bill9.aif" target="_blank&quot;">Audio3.aif</a>)</p>
<h2><span style="font-family:Arial, Helvetica, sans-serif;"><span style="font-family:Arial, Helvetica, sans-serif;">How can I meet people that I don´t know ?</span></span></h2>
<p><span style="font-family:Arial, Helvetica, sans-serif;">The idea of &#8220;ip based realtime group communication&#8221; , beside of <a href="http://en.wikipedia.org/wiki/Amateur_radio" target="_blank&quot;">amateur radio </a>,<br />
started 1988 with <a href="http://www.irc.org/history_docs/jarkko.html" target="_blank&quot;">IRC</a> (internet relay chat ), but there is no video or audio capabilitys, so we are following an older concept called<a href="http://en.wikipedia.org/wiki/CU-SeeMe" target="_blank&quot;">CU-SeeMe</a> a multiconferencing solution , developed in the early 90&#8242;s.</span></p>
<p style="text-align:center;"><span style="font-family:Arial, Helvetica, sans-serif;"><a href="http://farm2.static.flickr.com/1239/1360631161_4c2c011abb_o.jpg" target="_blank"></a><a href="http://farm2.static.flickr.com/1239/1360631161_4c2c011abb_o.jpg" target="_blank"><img class="aligncenter" src="http://farm2.static.flickr.com/1239/1360631161_4c2c011abb_o.jpg" alt="" width="640" height="480" /><br />
</a></span></p>
<p> </p>
<h2>a bit history , what was the problem ?</h2>
<p><span style="font-family:Arial;">However; in <a href="http://www.cs.cornell.edu/boom/2001sp/Rosenberg/index.htm" target="_blank&quot;">the past years </a>things <a href="http://collaboration.mitre.org/news/cuseeme.htm" target="_blank&quot;">changed </a>and all <a href="http://en.wikipedia.org/wiki/Instant_messaging" target="_blank&quot;">instant messengers</a> using the internet, regardless of their entry method ( jabber and voip applications using SIP or H323, <a href="http://www.theregister.co.uk/2009/02/12/nsa_offers_billions_for_skype_pwnage/" target="_blank">skype</a> and even e-mail) need to know the &#8220;adress&#8221;, &#8220;ID&#8221; or Nickname of a &#8220;user&#8221; to get in contact with him/her.  Even then, communication is mostly a one-to-one connection, and does not provide for broad community interaction and <span style="text-decoration:line-through;">NASA</span> <a href="http://en.wikipedia.org/wiki/Network_Address_Translation" target="_blank&quot;">NAT</a> broke the <a href="http://ipv6samurais.com/ipv6samurais/demystified/end-to-end-principle.html">rest</a>. </span></p>
<p><span style="font-family:Arial, Helvetica, sans-serif;"> For further understanding the &#8220;connectivity&#8221; problems, we would suggest reading <a href="http://pdos.csail.mit.edu/papers/uip:hotnets03.pdf">The Edge Network Management Crisis </a></span></p>
<p>But even <strong>microsofts</strong> desperate attempts to get a foot into the door with <a href="http://en.wikipedia.org/wiki/Microsoft_NetMeeting">Netmeeting</a> , whitch never had multiconferencing abilitys, ended up in a netmeeting porn desaster and gave videoconferencing on the net a <a href="http://archive.salon.com/21st/feature/1998/07/cov_21feature.html">bad name</a>.</p>
<blockquote><p><strong>openCU</strong> employs a conference control protocol that has proven to be quite robust and allows for the expression of detailed state regarding the relations of each conference participant to each other participant. In conjunction with a reflector software it allows for customized distribution of conference media, so that <strong>nothing is transmitted unless it is used</strong>. The protocol is limited in the size of the conference it can serve, but our investigations have shown that this can be extended. The video is encoded in an ad hoc format that was designed for a particular family of desktop machines that were widespread in the past. What it lacks in mathematical elegance, it makes up for in quickness.</p></blockquote>
<h2><strong>Interactive mutimedia streaming</strong></h2>
<p><span style="font-family:Arial, Helvetica, sans-serif;"><strong>openCU</strong>, an de_central opensource cross-platform protocol implementation of cuseeme. For room based multivideo conferencing up to 70 people (right now ). It currently Supports speex and xvid codecs for video. More specific information soon.<span style="font-family:arial;">How it works</span></span></p>
<p><span style="font-family:Arial, Helvetica, sans-serif;"><a href="https://sourceforge.net/project/showfiles.php?group_id=122388" target="_blank&quot;">Download </a>openCU ( only XP packages available right now ) and connect . (camera required and port 7648 has to be open), After connecting ,on your left side you will see a list with partizipants . If you klick on a &#8220;username&#8221; , his video stream will appear in ouropenCU application and on his end , an &#8220;eye &#8221; will open and shows that he is been watched and vice versa.</span></p>
<h2><span style="font-family:Arial, Helvetica, sans-serif;">Roadmap and Milestones</span></h2>
<ul>
<li><span>setting up a <a href="http://sourceforge.net/projects/opencu/" target="_blank&quot;">development enviroment</a></span></li>
<li><a href="http://www.dns-sd.org/ServiceTypes.html" target="_blank&quot;">register</a><span style="text-decoration:line-through;"> rendezvous </span>/ bonjour service type</li>
<li>register port 7648 at <a href="http://www.iana.org/assignments/port-numbers" target="_blank&quot;">iana.org</a> ( 2006 )</li>
<li><a href="http://www.ipronto.net/" target="_blank&quot;">Roozbeh Zabihollahi </a> joined me   (September 2008 )</li>
<li>First openCU &#8220;Alpha&#8221; experimental test client OpenCu-V0.01, available under <a href="http://opencu.sourceforge.net/download.html">Downloads</a></li>
<li>register IPv6 ULA (Unique Local Address) RFC4193 <a href="http://www.sixxs.net/tools/grh/ula/list/">Registration</a></li>
<li><a href="http://downloads.sourceforge.net/opencu/OpenCu-d-v0.09.msi?use_mirror=switch" target="_blank">version 0.09 of </a><strong><a href="http://downloads.sourceforge.net/opencu/OpenCu-d-v0.09.msi?use_mirror=switch" target="_blank">openCU</a></strong> released , with help menu.</li>
<li>setting up a<a href="http://apps.sourceforge.net/wordpress/opencu/" target="_blank"> openCU blog</a> at sourceforge with <a href="http://apps.sourceforge.net/laconica/opencu/" target="_blank">laconica</a> support <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
</div>
<br /> Tagged: ipv6.multicast, mtv, streaming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/macbroadcast.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/macbroadcast.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/macbroadcast.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macbroadcast.wordpress.com&amp;blog=6591581&amp;post=3&amp;subd=macbroadcast&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://macbroadcast.wordpress.com/2009/02/15/introducing-%e2%80%9d-i-want-my-mtv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://opencu.sourceforge.net/bill2.aif" length="869267" type="audio/x-aiff" />
<enclosure url="http://opencu.sourceforge.net/bill8.aif" length="460148" type="audio/x-aiff" />
<enclosure url="http://opencu.sourceforge.net/bill9.aif" length="877370" type="audio/x-aiff" />
	
		<media:content url="http://1.gravatar.com/avatar/f189cb7dbf5ad43eb5fa568e1e9aba50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">macbroadcast</media:title>
		</media:content>

		<media:content url="http://farm2.static.flickr.com/1239/1360631161_4c2c011abb_o.jpg" medium="image" />
	</item>
	</channel>
</rss>
