<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Alban's blog</title>
	
	<link>http://blog.tryphon.org/alban</link>
	<description>It looks like my blog</description>
	<pubDate>Thu, 25 Feb 2010 10:56:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/tryphon/alban" /><feedburner:info uri="tryphon/alban" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Rivendell 1.7.0 packages for debian and ubuntu</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/Y0j-rhWlY2o/</link>
		<comments>http://blog.tryphon.org/alban/archives/2010/02/25/rivendell-170-packages-for-debian-and-ubuntu/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 10:56:04 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[debian]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[release]]></category>

		<category><![CDATA[rivendell]]></category>

		<category><![CDATA[tryphon]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=730</guid>
		<description><![CDATA[Fred Gleason team released Rivendell 1.7.0 on monday, Debian and Ubuntu packages are now updated. 
Please follow the quick start guide for your first Rivendell installation.
As usual, you can find on debian.tryphon.org :

Debian packages : for lenny, squeeze or unstable
Ubuntu packages : for hardy, jaunty and karmic
both i386 and amd64 packages

]]></description>
			<content:encoded><![CDATA[<p>Fred Gleason team released <a href="http://groups.google.fr/group/rivendell-dev/browse_thread/thread/febf6bdb38d0d65a" onclick="javascript:urchinTracker ('/outbound/article/groups.google.fr');">Rivendell 1.7.0</a> on monday, Debian and Ubuntu packages are now updated. </p>
<p>Please follow the <a href="http://blog.tryphon.org/alban/archives/2009/04/19/quick-start-for-rivendell-on-debianubuntu/" >quick start guide for your first Rivendell installation</a>.</p>
<p>As usual, you can find on <a href="http://debian.tryphon.org" >debian.tryphon.org</a> :</p>
<ul>
<li>Debian packages : for lenny, squeeze or unstable</li>
<li>Ubuntu packages : for hardy, jaunty and karmic</li>
<li>both i386 and amd64 packages</li>
</ul>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/Y0j-rhWlY2o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2010/02/25/rivendell-170-packages-for-debian-and-ubuntu/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2010/02/25/rivendell-170-packages-for-debian-and-ubuntu/</feedburner:origLink></item>
		<item>
		<title>Check if selected date is correct with cucumber</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/x9ctLH2aFBI/</link>
		<comments>http://blog.tryphon.org/alban/archives/2010/01/04/check-if-selected-date-is-correct-with-cucumber/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:04:05 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[cucumber]]></category>

		<category><![CDATA[pigebox]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[test]]></category>

		<category><![CDATA[tryphon]]></category>

		<category><![CDATA[webrat]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=708</guid>
		<description><![CDATA[The default web steps provided by cucumber provide a way to check the content of a text field : the "..." field should contain "...", but how to check if the date selected by default in a form is correct ?
To describe some of the features of the coming PigeBox web interface, we needed something [...]]]></description>
			<content:encoded><![CDATA[<p>The default web steps provided by <a href="http://cukes.info/" onclick="javascript:urchinTracker ('/outbound/article/cukes.info');">cucumber</a> provide a way to check the content of a text field : <code>the "..." field should contain "..."</code>, but how to check if the date selected by default in a form is correct ?</p>
<p>To describe some of the features of the coming <a href="http://www.tryphon.eu/products/pigebox" onclick="javascript:urchinTracker ('/outbound/article/www.tryphon.eu');">PigeBox</a> web interface, we needed something like : <code>the "..." datetime should contain "17:00:00"</code>.</p>
<p>Even if <a href="github.com/brynary/webrat">webrat</a> doesn&#8217;t provide the builtin method to &#8220;read&#8221; a <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/DateHelper.html#M001701" onclick="javascript:urchinTracker ('/outbound/article/api.rubyonrails.org');">Rails datetime select</a>, this <a href="http://gist.github.com/268513#file_webrat_ext.rb" onclick="javascript:urchinTracker ('/outbound/article/gist.github.com');">piece of code</a> adds the <a href="http://gist.github.com/268513#file_webrat_ext.rb" onclick="javascript:urchinTracker ('/outbound/article/gist.github.com');">method selected_datetime to webrate scope</a>.</p>
<p>With this small webrat extension, the following step becomes possible :</p>
<p><span id="more-708"></span></p>
<pre><code>Then /^the "([^\"]*)" datetime should contain "([^\"]*)"$/ do |field, value|
  selected_datetime(:from => field).should == Time.parse(value)
end</code></pre>
<p>In our case, it makes possible this kind of scenario :</p>
<pre><code>  Scenario: Create a chunk with a single label
    Given a label exists with timestamp: "17:00:00"
    And that label is selected
    When I follow "Nouvel extrait à partir de ce repère"
    Then I should be on the new chunk page
    And the "Horaire de début" datetime should contain "17:00:00"
    And the "Horaire de fin" datetime should contain "17:00:00"</code></pre>
<p>The <a href="http://gist.github.com/268513" onclick="javascript:urchinTracker ('/outbound/article/gist.github.com');">complete gist is available</a>.</p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/x9ctLH2aFBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2010/01/04/check-if-selected-date-is-correct-with-cucumber/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2010/01/04/check-if-selected-date-is-correct-with-cucumber/</feedburner:origLink></item>
		<item>
		<title>Rivendell 1.6.0 packages for debian and ubuntu (with karmic support)</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/eGef9UdshHw/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/12/22/rivendell-160-packages-debian-ubuntu-with-karmic/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 12:51:17 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[debian]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[karmic]]></category>

		<category><![CDATA[release]]></category>

		<category><![CDATA[rivendell]]></category>

		<category><![CDATA[tryphon]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=703</guid>
		<description><![CDATA[The Rivendell development team released Rivendell 1.6.0 last thursday, Debian and Ubuntu packages are now updated. 
For Ubuntu Karmic users, the distribution is now supported. Choose the right source on debian.tryphon.org.
Please follow the quick start guide for your first Rivendell installation.

As usual, you can find on debian.tryphon.org :

Debian packages : for lenny, squeeze or unstable
Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>The Rivendell development team released <a href="http://lists.rivendellaudio.org/pipermail/rivendell-dev/2009-December/006864.html" onclick="javascript:urchinTracker ('/outbound/article/lists.rivendellaudio.org');">Rivendell 1.6.0</a> last thursday, Debian and Ubuntu packages are now updated. </p>
<p>For Ubuntu Karmic users, the distribution is now supported. Choose the right source on <a href="http://debian.tryphon.org" >debian.tryphon.org</a>.</p>
<p>Please follow the <a href="http://blog.tryphon.org/alban/archives/2009/04/19/quick-start-for-rivendell-on-debianubuntu/" >quick start guide for your first Rivendell installation</a>.</p>
<p><span id="more-703"></span><br />
As usual, you can find on <a href="http://debian.tryphon.org" >debian.tryphon.org</a> :</p>
<ul>
<li>Debian packages : for lenny, squeeze or unstable</li>
<li>Ubuntu packages : for hardy, jaunty and karmic</li>
<li>both i386 and amd64 packages</li>
</ul>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/eGef9UdshHw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/12/22/rivendell-160-packages-debian-ubuntu-with-karmic/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/12/22/rivendell-160-packages-debian-ubuntu-with-karmic/</feedburner:origLink></item>
		<item>
		<title>RadiOxfam : la radio éphémère qui prend le train</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/94BBiqkTh3E/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/12/10/radioxfam-la-radio-ephemere-qui-prend-le-train/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 09:11:08 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[francais]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[autres-mondes]]></category>

		<category><![CDATA[climat]]></category>

		<category><![CDATA[copenhague]]></category>

		<category><![CDATA[oxfam]]></category>

		<category><![CDATA[radioxfam]]></category>

		<category><![CDATA[train]]></category>

		<category><![CDATA[tryphon]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=690</guid>
		<description><![CDATA[
850 personnes de France, de Grande Bretagne, d’Espagne, d’Irlande, de Belgique embarquent vendredi midi à Bruxelles Midi dans un train pour Copenhague.
Mise en oeuvre par Oxfam, RadiOxfam sera la radio éphémère du périple. Au programme : débats, interviews évidemment autour du climat mais aussi sur les implications sociales que cela implique.
Même si nous ne serons [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.radioxfam.org" onclick="javascript:urchinTracker ('/outbound/article/www.radioxfam.org');"><img style="float: right; margin: 0 0 5px 10px;" src="http://blog.tryphon.org/alban/media/2009-12-10-radio-oxfam.png"/></a></p>
<p>850 personnes de France, de Grande Bretagne, d’Espagne, d’Irlande, de Belgique <a href="http://www.climatetjusticesociale.be/" onclick="javascript:urchinTracker ('/outbound/article/www.climatetjusticesociale.be');">embarquent vendredi midi à Bruxelles Midi</a> dans un <a href="http://www.radioxfam.org/ep/un-train-pour-copenhague" onclick="javascript:urchinTracker ('/outbound/article/www.radioxfam.org');">train pour Copenhague</a>.</p>
<p>Mise en oeuvre par Oxfam, <a href="http://www.radioxfam.org/" onclick="javascript:urchinTracker ('/outbound/article/www.radioxfam.org');">RadiOxfam</a> sera la radio éphémère du périple. Au programme : débats, interviews évidemment autour du climat mais aussi sur les implications sociales que cela implique.</p>
<p>Même si nous ne serons que 5 à bord du train, toute l&#8217;équipe d&#8217;<a href="http://www.autres-mondes.org" onclick="javascript:urchinTracker ('/outbound/article/www.autres-mondes.org');">Autres(M)Ondes</a> (et <a href="http://www.tryphon.eu/" onclick="javascript:urchinTracker ('/outbound/article/www.tryphon.eu');">Tryphon</a>) s&#8217;activent pour préparer ces 72 heures : studio dans le wagon restaurant durant les 26 heures de voyages, diffusion des programmes dans le train, mise en ligne des programmes sur le site dès notre arrivée à Copenhague, &#8230;</p>
<p>Pour ne rien rater de ces 3 jours d&#8217;une radio pas comme les autres, abonnez-vous au <a href="http://www.radioxfam.org/feed" onclick="javascript:urchinTracker ('/outbound/article/www.radioxfam.org');">podcast de RadiOxfam</a>. Les prochains sons dès vendredi matin 9 heures ! A suivre aussi sur Twitter : <a href="http://twitter.com/radioxfam" onclick="javascript:urchinTracker ('/outbound/article/twitter.com');">@radioxfam</a>.</p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/94BBiqkTh3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/12/10/radioxfam-la-radio-ephemere-qui-prend-le-train/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/12/10/radioxfam-la-radio-ephemere-qui-prend-le-train/</feedburner:origLink></item>
		<item>
		<title>Salon Le Radio, destination Libre</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/hxFHfYsnbZE/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/10/19/salon-le-radio-destination-logicel-libre/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:57:21 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[francais]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[Florent Peyraud]]></category>

		<category><![CDATA[logiciel libre]]></category>

		<category><![CDATA[salon]]></category>

		<category><![CDATA[tryphon]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=684</guid>
		<description><![CDATA[A partir de demain, nous serons parmi les visiteurs du salon SIEL – SATIS – LE RADIO. Pour Florent et moi, c&#8217;est l&#8217;occasion de voir ce qui se fait de neuf dans le monde de la radio. 
Evidemment, ça n&#8217;est pas l&#8217;endroit où l&#8217;on croisera une myriade de logiciels libres &#8230; Mais c&#8217;est une manière [...]]]></description>
			<content:encoded><![CDATA[<p>A partir de demain, nous serons parmi les visiteurs du salon <a href="http://www.siel-satis.com" onclick="javascript:urchinTracker ('/outbound/article/www.siel-satis.com');">SIEL – SATIS – LE RADIO</a>. Pour Florent et moi, c&#8217;est l&#8217;occasion de voir ce qui se fait de neuf dans le monde de la radio. </p>
<p>Evidemment, ça n&#8217;est pas l&#8217;endroit où l&#8217;on croisera une myriade de logiciels libres &#8230; Mais c&#8217;est une manière pour nous de rencontrer pas mal de gens et de tester justement nos <a href="http://www.tryphon.eu" onclick="javascript:urchinTracker ('/outbound/article/www.tryphon.eu');">projets radio basés sur des solutions libres</a>, histoire de consolider les premiers retours de notre étude de marché en cours.</p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/hxFHfYsnbZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/10/19/salon-le-radio-destination-logicel-libre/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/10/19/salon-le-radio-destination-logicel-libre/</feedburner:origLink></item>
		<item>
		<title>Radio Amazigh, Babel et logiciels libres</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/6_g-YgYXdqI/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/10/17/radio-amazigh-babel-et-logiciels-libres/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 10:24:55 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[francais]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[autres-mondes]]></category>

		<category><![CDATA[babel]]></category>

		<category><![CDATA[logiciel libre]]></category>

		<category><![CDATA[rivendell]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=680</guid>
		<description><![CDATA[Avec toute l&#8217;équipe d&#8217;Autres(M)Ondes, nous réalisons ce soir une radio éphémère consacrée à Amazigh Kateb et son nouvel album Marchez Noir. Au programme, direct à partir du 18h depuis notre bar préféré : le Babel à Ménilmontant.
Une soirée bien sympathique que vous pourrez suivre sur le net en Ogg/Vorbis. Pour ceux qui sont dans le [...]]]></description>
			<content:encoded><![CDATA[<p>Avec toute l&#8217;équipe d&#8217;Autres(M)Ondes, nous réalisons ce soir une <a href="http://www.autres-mondes.org/evenements/2009/radio-amazigh" onclick="javascript:urchinTracker ('/outbound/article/www.autres-mondes.org');">radio éphémère consacrée à Amazigh Kateb</a> et son <a href="http://blog.amazighkateb.com/2009/09/marchez-noir-sortie-le-17-octobre.html" onclick="javascript:urchinTracker ('/outbound/article/blog.amazighkateb.com');">nouvel album Marchez Noir</a>. Au programme, direct à partir du 18h depuis notre bar préféré : le <a href="http://zdagzdag.com/" onclick="javascript:urchinTracker ('/outbound/article/zdagzdag.com');">Babel</a> à Ménilmontant.</p>
<p>Une soirée bien sympathique que vous pourrez suivre sur le net en <a href="http://fr.wikipedia.org/wiki/Vorbis" onclick="javascript:urchinTracker ('/outbound/article/fr.wikipedia.org');">Ogg/Vorbis</a>. Pour ceux qui sont dans le quartier, n&#8217;hésitez pas. Et si les logiciels libres vous intéressent dans le monde de la radio, venez nous dire bonjour <img src='http://blog.tryphon.org/alban/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/6_g-YgYXdqI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/10/17/radio-amazigh-babel-et-logiciels-libres/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/10/17/radio-amazigh-babel-et-logiciels-libres/</feedburner:origLink></item>
		<item>
		<title>First “public” release for alsa-backup</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/875Pjrxgwko/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/09/28/first-public-release-for-alsa-backup/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 18:45:00 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[debian]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[alsa]]></category>

		<category><![CDATA[daemon]]></category>

		<category><![CDATA[justrecord]]></category>

		<category><![CDATA[loop]]></category>

		<category><![CDATA[record]]></category>

		<category><![CDATA[ruby-ffi]]></category>

		<category><![CDATA[syslog]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=670</guid>
		<description><![CDATA[For a long time, we&#8217;re using continuous recording tools to record our radio broadcasts. Many of these tools were homemade and alsa-backup is the latest project of this &#8220;serie&#8221; (after jack-backup and just-record).
alsa-backup can :

record several channels,
change record file according your naming policy (&#8230; without a blank),
run as daemon,
log into syslog,
stop record and retry after [...]]]></description>
			<content:encoded><![CDATA[<p>For a long time, we&#8217;re using continuous recording tools to record our radio broadcasts. Many of these tools were homemade and <strong>alsa-backup</strong> is the latest project of this &#8220;serie&#8221; (after <a href="http://github.com/albanpeignier/jack-backup" onclick="javascript:urchinTracker ('/outbound/article/github.com');">jack-backup</a> and <a href="http://blog.tryphon.org/alban/archives/2007/11/27/justrecord-a-tool-to-record/" >just-record</a>).</p>
<p><a href="http://github.com/albanpeignier/alsa-backup" onclick="javascript:urchinTracker ('/outbound/article/github.com');">alsa-backup</a> can :</p>
<ul>
<li>record several channels,</li>
<li>change record file according your naming policy (&#8230; without a blank),</li>
<li>run as daemon,</li>
<li>log into syslog,</li>
<li>stop record and retry after errors</li>
</ul>
<p>And many other features are coming <img src='http://blog.tryphon.org/alban/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> This piece of Ruby code is more flexible than just-record. It uses the awesome <a href="http://wiki.github.com/ffi/ffi" onclick="javascript:urchinTracker ('/outbound/article/wiki.github.com');">ruby-ffi library</a> which allows to use C libraries with few lines of ruby code. </p>
<p>alsa-backup is available as debian/ubuntu packages on <a href="http://debian.tryphon.org" >Tryphon&#8217;s debian repository</a>. Source files are available in GitHub <a href="http://github.com/albanpeignier/alsa-backup" onclick="javascript:urchinTracker ('/outbound/article/github.com');">alsa-backup</a> repository.</p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/875Pjrxgwko" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/09/28/first-public-release-for-alsa-backup/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/09/28/first-public-release-for-alsa-backup/</feedburner:origLink></item>
		<item>
		<title>Use a M-Audio Delta 66 Rev E with alsa</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/vCRqfwA4T1U/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/09/20/m-audio-delta-66-rev-e-with-alsa/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 09:32:48 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[alsa]]></category>

		<category><![CDATA[cs8427]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[delta 66]]></category>

		<category><![CDATA[kernel]]></category>

		<category><![CDATA[m-audio]]></category>

		<category><![CDATA[module]]></category>

		<category><![CDATA[Radio Campus Bruxelles]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=654</guid>
		<description><![CDATA[I&#8217;ve installed this week a Rivendell station with a M-Audio Delta 66 Rev E sound card. As experienced in 2008, the alsa ice1712 driver can&#8217;t be loaded with (some ?) Delta 66 Rev E :
[   11.605252] invalid CS8427 signature 0x0: let me try again...
[   11.606638] unable to find CS8427 signature (expected [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve installed this week a Rivendell station with a M-Audio Delta 66 Rev E sound card. As <a href="http://blog.tryphon.org/alban/archives/2008/08/07/m-audio-delta-66-rev-e-in-the-house/" >experienced in 2008</a>, the alsa ice1712 driver can&#8217;t be loaded with (some ?) Delta 66 Rev E :</p>
<pre>[   11.605252] invalid CS8427 signature 0x0: let me try again...
[   11.606638] unable to find CS8427 signature (expected 0x71, read 0x0),
[   11.606687]    initialization is not completed
[   11.606732] CS8427 initialization failed
[   11.606784] ACPI: PCI interrupt for device 0000:05:01.0 disabled
[   11.606790] ICE1712: probe of 0000:05:01.0 failed with error -14</pre>
<p>Same problem occurs with alsa 1.0.17 on lenny or 1.0.18 on jaunty.</p>
<p>Several tips are available in forums &#8230; but the only way I found to use the card is to <a href="http://blog.tryphon.org/alban/media/2009-09-20-disable_spdif_delta66e.patch" >patch (again) the alsa driver to disable the cs8427 initialisation</a>. </p>
<p>But this time, here are all the required resources to make your Delta 66 Rev E work with alsa :</p>
<p><span id="more-654"></span><br />
<strong>Resources</strong></p>
<ul>
<li><a href="http://blog.tryphon.org/alban/media/2009-09-20-disable_spdif_delta66e.patch" >patch to disable cs8427 initialisation</a> for Delta 66 Rev E</li>
<li><a href="http://people.tryphon.org/~alban/debian/lenny/" >Lenny packages (alsa source and modules)</a></li>
<li><a href="http://people.tryphon.org/~alban/debian/jaunty/" >Jaunty packages (alsa source and modules)</a></li>
</ul>
<p><strong>The complete recipe under debian or ubuntu</strong></p>
<p>1. Install alsa driver package source :</p>
<pre>
apt-get source alsa-driver
sudo apt-get build-dep alsa-driver
cd alsa-driver-xyz
</pre>
<p>2. Install the patch</p>
<pre>
wget -O debian/patches/disable_spdif_delta66e.patch \
http://blog.tryphon.org/alban/media/2009-09-20-disable_spdif_delta66e.patch
echo disable_spdif_delta66e.patch >> debian/patches/series
</pre>
<p>3. Update changelog and make local the release</p>
<pre>
dch --local delta66e "Skip Delta 66 E spdif init"
</pre>
<p>4. Build package</p>
<pre>
dpkg-buildpackage
</pre>
<p>5. Install the built alsa-source package</p>
<pre>
cd .. ; dpkg -i alsa-source-xyzdelta66e1_all.deb
</pre>
<p>6. Build and install modules</p>
<pre>
module-assistant a-i alsa
</pre>
<p>Thanks to fredux from <a href="http://radiocampus.ulb.ac.be/" onclick="javascript:urchinTracker ('/outbound/article/radiocampus.ulb.ac.be');">Radio Campus Bruxelles</a> and their Ubuntu jaunty with another Delta 66.</p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/vCRqfwA4T1U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/09/20/m-audio-delta-66-rev-e-with-alsa/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/09/20/m-audio-delta-66-rev-e-with-alsa/</feedburner:origLink></item>
		<item>
		<title>First steps to Rivendell … 5 years ago</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/H0B4tKjluIg/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/08/27/first-steps-to-rivendell-5-years-ago/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 21:54:28 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[radio]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[rivendell]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=638</guid>
		<description><![CDATA[1. First email
On 18 August 2004 (01:24 AM) my first mail to Fred Gleason, my first mail about Rivendell :

Hello Fred,
After your email last evening, I downloaded the Rivendell source files and started my tests.
I didn&#8217;t experience serious problems to compile libradio and rivendell tools. I can send you some of my notes about it [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. First email</strong></p>
<p>On 18 August 2004 (01:24 AM) my first mail to Fred Gleason, my first mail about <a href="http://www.rivendellaudio.org" onclick="javascript:urchinTracker ('/outbound/article/www.rivendellaudio.org');">Rivendell</a> :</p>
<div style="font-family: monospace">
Hello Fred,</p>
<p>After your email last evening, I downloaded the Rivendell source files and started my tests.</p>
<p>I didn&#8217;t experience serious problems to compile libradio and rivendell tools. I can send you some of my notes about it (a bad version of gpio.h into libradio, etc ..). Rivendell was installed successfull yesterday evening (it was late). I configured mysql and continued the test this evening. Few small<br />
problems, no serious ones. Some of the error messages don&#8217;t give enough information. But with the sources .. and strace, I found the solutions (/var/snd is harcoded into rdlibrary for instance .. and I believed it was read in to rd.conf.  I can send you my notes.</p>
<p>The jack support seems to work fine .. but rdlibrary stays silenced and rdairplay crashs at start (I&#8217;ve got the gdb trace if you want). I suppose that I have a configuration problem with the internal card/port settings (audio port ?). I didn&#8217;t find into rdadmin menus to edit the audio ports (like the<br />
website screenshot). I found related sources (something about matrixes, etc ..). What can be the solution ?</p>
<p>I noted that the sound formats are wav and mp3 .. we work with flac and ogg (but the music library is still mostly in mp3). I looked quickly the code about the audio format (RWaveFile, rdimport, etc ..). But I didn&#8217;t find a TODO or planned features in the web site. Do you think about a flac and ogg support ?</p>
<p>Rivendell seems to be a nice application. It&#8217;s a great work. What&#8217;s its story ? Did you find contributors since the license change ? I didn&#8217;t find details of the development activities (cvs repository, mailing-lists, etc ..).</p>
<p>Thanks so much for your work.
</p></div>
<p><strong>2. First sound</strong></p>
<p>After 3 days, a first sound in Rivendell :</p>
<p><a href="http://images.tryphon.org/v/alban/screenshots/screenshot_rivendell_firstsound.png.html" ><img src="http://blog.tryphon.org/alban/media/2009-08-27-rivendell-2004-first-sound.png"/></a></p>
<p><strong>3. First debian package release</strong></p>
<p>On 24 August 2004, the <a href="http://github.com/albanpeignier/rivendell-debian/blob/master/rivendell/debian/changelog#L492" onclick="javascript:urchinTracker ('/outbound/article/github.com');">Rivendell debian package is created</a>.</p>
<p><strong>4. First live with Rivendell</strong></p>
<p>On 8 September 2004, Rivendell is on air for 10 days :</p>
<p><a href="http://images.tryphon.org/extramundi/rivendell" ><img src="http://blog.tryphon.org/alban/media/2009-08-27-rivendell-2004-in-action.png"/></a></p>
<p>@Fred: thanks <img src='http://blog.tryphon.org/alban/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/H0B4tKjluIg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/08/27/first-steps-to-rivendell-5-years-ago/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/08/27/first-steps-to-rivendell-5-years-ago/</feedburner:origLink></item>
		<item>
		<title>Rivendell 1.5.2 packages for debian and ubuntu (with jaunty support)</title>
		<link>http://feedproxy.google.com/~r/tryphon/alban/~3/QAyb2t7DY8A/</link>
		<comments>http://blog.tryphon.org/alban/archives/2009/08/26/rivendell-152-packages-for-debian-and-ubuntu-with-jaunty-support/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 07:48:35 +0000</pubDate>
		<dc:creator>alban</dc:creator>
		
		<category><![CDATA[debian]]></category>

		<category><![CDATA[radio]]></category>

		<category><![CDATA[jaunty]]></category>

		<category><![CDATA[release]]></category>

		<category><![CDATA[rivendell]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.tryphon.org/alban/?p=632</guid>
		<description><![CDATA[Rivendell 1.5.2 has been released yesterday, Debian and Ubuntu packages have been updated this night. 
Good news for Ubuntu Jaunty users : daemons failures are resolved. Thanks to Ayoli for the trace  
Please follow the quick start guide for your first Rivendell installation.

As usual, you can find on debian.tryphon.org :

Debian packages : for lenny, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lists.rivendellaudio.org/pipermail/rivendell-prog/2009-August/001320.html" onclick="javascript:urchinTracker ('/outbound/article/lists.rivendellaudio.org');">Rivendell 1.5.2 has been released yesterday</a>, Debian and Ubuntu packages have been updated this night. </p>
<p>Good news for Ubuntu Jaunty users : daemons failures are resolved. Thanks to <a href="http://ayozone.org/" onclick="javascript:urchinTracker ('/outbound/article/ayozone.org');">Ayoli</a> for the trace <img src='http://blog.tryphon.org/alban/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Please follow the <a href="http://blog.tryphon.org/alban/archives/2009/04/19/quick-start-for-rivendell-on-debianubuntu/" >quick start guide for your first Rivendell installation</a>.</p>
<p><span id="more-632"></span><br />
As usual, you can find on <a href="http://debian.tryphon.org" >debian.tryphon.org</a> :</p>
<ul>
<li>Debian packages : for lenny, squeeze or unstable</li>
<li>Ubuntu packages : for hardy, intreprid and jaunty</li>
<li>both i386 and amd64 packages</li>
</ul>
<img src="http://feeds.feedburner.com/~r/tryphon/alban/~4/QAyb2t7DY8A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.tryphon.org/alban/archives/2009/08/26/rivendell-152-packages-for-debian-and-ubuntu-with-jaunty-support/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.tryphon.org/alban/archives/2009/08/26/rivendell-152-packages-for-debian-and-ubuntu-with-jaunty-support/</feedburner:origLink></item>
	</channel>
</rss>
