<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="http://coco-lab.org/Elgg/news/rss/rssstyles.xsl"/?>
<rss version='2.0'   xmlns:dc='http://purl.org/dc/elements/1.1/'>
<channel xml:base='http://coco-lab.org/Elgg//weblog/'>
    <title><![CDATA[timo : RSS Feed]]></title>
    <description><![CDATA[RSS Feed showing user for timo using the Elgg software]]></description>
    <generator>Elgg</generator>
    <link>http://coco-lab.org/Elgg/activity/user/timo/summary/all/all/1</link>        
        <item>
            <title><![CDATA[LatenzChecks]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/LatenzChecks</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/LatenzChecks</guid>
            <pubDate>08/20/11 00:47</pubDate>
            <description><![CDATA[ <a href="http://www.insurersdeals.com/">affordable term life insurance</a> 8-[ <a href="http://www.quotesmarket.net/">car insureance</a> 8( ]]></description>
        </item>        
        <item>
            <title><![CDATA[LatenzChecks]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/LatenzChecks</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/LatenzChecks</guid>
            <pubDate>08/18/11 02:16</pubDate>
            <description><![CDATA[ <a href="http://www.insurproducts.net/cheap_auto_insurance.html">cheapest auto insurance</a> nntv <a href="http://www.insurplus.net/">cheap car insurance</a> 8-PPP ]]></description>
        </item>        
        <item>
            <title><![CDATA[LatenzChecks]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/LatenzChecks</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/LatenzChecks</guid>
            <pubDate>08/16/11 10:28</pubDate>
            <description><![CDATA[s0CBKJ  <a href="http://qptxyumokaph.com/">qptxyumokaph</a>]]></description>
        </item>        
        <item>
            <title><![CDATA[LatenzChecks]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/LatenzChecks</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/LatenzChecks</guid>
            <pubDate>08/16/11 01:14</pubDate>
            <description><![CDATA[Didn't know the forum rules aollwed such brilliant posts.]]></description>
        </item>        
        <item>
            <title><![CDATA[Comment on "howto: SRILM and ubuntu"]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/59.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/59.html</guid>
            <pubDate>02/12/11 20:51</pubDate>
            <description><![CDATA[<a href="http://www.google.com/">http://www.google.com</a>]]></description>
        </item>        
        <item>
            <title><![CDATA[poetry generation using ASR and TTS]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/134.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/134.html</guid>
            <pubDate>11/04/10 09:38</pubDate>
            <description><![CDATA[<p>how about the following: you feed the first verse of your favourite poem/song lyrics into an ASR and have a TTS read back what the ASR understood. It is very likely to rhyme! If you also read back a nice chorus, people will love it. Now, you just need your TTS to do decent singing and you&#39;re set:</p><p>U: &quot;Ick heff mol in Hamburg een Veermaster sehn&quot;<br />S: &quot;gegen $l aber hin &lt;sil&gt; der hach&lt;sil&gt; also eben&quot;<br />S (canned): &quot;to my hooday, to my hooday&quot;<br />U: &quot;De masten so scheep as den Schipper sien Been&quot;<br />S: &quot;hm mach &lt;sil&gt; nach $t es in der &lt;sil&gt; warm $w&quot;<br />S (canned): &quot;to my hooday, hooday ho.&quot;</p><p>By the way, this is how singing works in a soccer stadium and the principle behind Chinese whispers. </p>]]></description>
        </item>        
        <item>
            <title><![CDATA[aggregated audio duration]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/82.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/82.html</guid>
            <pubDate>04/17/10 12:55</pubDate>
            <description><![CDATA[<p>I&#39;ve finally written the one script that was missing from the interwebs and that I have longed to have for so long: </p> <div style="background-color: lightgray; font-family: monospace; line-height: 110%"><p>#!/usr/bin/perl<br /># Copyright (C) 2010 Timo Baumann<br /># This program is free software; you can redistribute it and/or modify it <br /># under the terms of the GNU General Public License as published by the <br /># Free Software Foundation; either version 2 of the License, <br /># or (at your option) any later version.<br /># <br /># This program is distributed in the hope that it will be useful, <br /># but WITHOUT ANY WARRANTY; without even the implied warranty of <br /># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. <br /># See the GNU General Public License for more details.<br /># <br /># You should have received a copy of the GNU General Public License <br /># along with this program; if not, see &lt;http://www.gnu.org/licenses/&gt;.</p><p>use strict;<br />use warnings;<br />use Audio::Wav;<br />use Audio::Wav::Read;<br /><br />#usage: audio-duration.pl path-or-file1 path-or-file2 ...<br /><br />my @files;<br />for my $arg (@ARGV) {<br />&nbsp;&nbsp; &nbsp;my $findresult = `find $arg`;<br />&nbsp;&nbsp; &nbsp;push @files, grep /.wav$/, split &quot; &quot;, $findresult;<br />}<br />#print join &quot; &quot;, @files;<br />my $duration = 0.0;<br />my $wav = new Audio::Wav;<br />for my $file (@files) {<br />&nbsp;&nbsp; &nbsp;my $read = $wav-&gt;read($file);<br />&nbsp;&nbsp; &nbsp;$duration += $read-&gt;length_seconds();<br />}<br /># convert to something readable<br />my $readableDuration = &quot;&quot;;<br />if ($duration &gt; 600) {<br />&nbsp;&nbsp; &nbsp;my $seconds = int($duration + .5);<br />&nbsp;&nbsp; &nbsp;my $minutes = int($duration / 60);<br />&nbsp;&nbsp; &nbsp;$seconds -= $minutes * 60;<br />&nbsp;&nbsp; &nbsp;my $hours = int($minutes / 60);<br />&nbsp;&nbsp; &nbsp;$minutes -= $hours * 60;<br />&nbsp;&nbsp; &nbsp;$readableDuration = &quot;(&quot; . ($hours &gt; 0 ? &quot;$hours:&quot; : &quot;&quot;) . &quot;$minutes&#39;$seconds\&quot;) &quot;;<br />}<br />print &quot;$duration seconds &quot;, $readableDuration, &quot;in &quot;, ($#files + 1), &quot; wave files.\n&quot;;</p></div> <p>Running this in any directory wil yield the duration of audio (only .wav files) of all the files in this directory. If you supply arguments, it will look into the given directories (or files) and tell you the summed duration.</p><p>A must-have for any corpus-linguist dealing with loads of audio files! </p>]]></description>
        </item>        
        <item>
            <title><![CDATA[Update]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/81.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/81.html</guid>
            <pubDate>10/11/09 19:40</pubDate>
            <description><![CDATA[I&#39;ve been back from Stockholm for a while now, gone to Interspeech, SIGdial and YRRSDS and am now back at work in Golm. I&#39;m now again (professionally) centered around two things: Getting our next prototype of an incremental SDS up and running in the next few months and continue to work on my PhD thesis, which I hope to finish some time next year.]]></description>
        </item>        
        <item>
            <title><![CDATA[Great new Sphinx Extensions]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/80.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/80.html</guid>
            <pubDate>07/01/09 09:09</pubDate>
            <description><![CDATA[I finally got around to package the pitch tracker and some of our incremental result filtering (which was the reason for me travelling to Boulder, USA) as add-ons for Sphinx. Find them on my <a href="http://www.ling.uni-potsdam.de/~timo/code/">website</a>.]]></description>
        </item>        
        <item>
            <title><![CDATA[Here and there]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/79.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/79.html</guid>
            <pubDate>05/20/09 08:43</pubDate>
            <description><![CDATA[I have safely arrived in Stockholm, where I will be visiting researcher at KTH&#39;s <a href="http://www.speech.kth.se/speech/">speech lab</a> for the summer. Also, I will be travelling to <a href="http://www.naaclhlt2009.org/">NAACL-HLT 2009</a> in Boulder to present our paper and a smaller <a href="http://www.sfb673.org/component/option,com_eventcal/task,event/date,1244444400/eventid,73/Itemid,53/catid,/lang,en/">workshop</a> in Bielefeld. Also, I will participate in <a href="http://www.diaholmia.org/">Dialholmia</a> as a student volunteer. Many chances to meet and greet!]]></description>
        </item>    </channel></rss>
