<?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[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>        
        <item>
            <title><![CDATA[Speed-Up Boot under Ubuntu with VMware]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/78.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/78.html</guid>
            <pubDate>01/30/09 09:50</pubDate>
            <description><![CDATA[<p>I still need Windows for one piece of software that I use occasionally. So, since I&#39;ve moved to Ubuntu, I&#39;ve been using VMware for this (as it was the only solution at that time).</p><p>My VMware stopped working under Hardy. Luckily, I never needed my Windows-App for half a year. In Intrepid, I was able to just install vmware from their webpage and it restored my windows session from a year ago. Probably a record-breaking uptime for windows...</p><p>So, yesterday I played around with <a href="http://www.bootchart.org/">bootchart</a> and found out, that the VMware-services took 4 precious seconds of my (and my battery&#39;s) lifetime on every boot. Not really worth it, as I&#39;m unlikely to use my Windows-App anytime soon. So, here&#39;s what I did: </p><p>remove the links in /etc/rc*.d/*vmware </p><p>as the first command in /usr/bin/vmplayer add: </p><p>gksu -D &quot;Need root priviledges to start vmware services.&quot; /etc/init.d/vmware restart</p><p>Works like a charm. </p>]]></description>
        </item>        
        <item>
            <title><![CDATA[Generic Minimum Edit Distance of lists in Perl]]></title>
            <link>http://coco-lab.org/Elgg/timo/weblog/77.html</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/weblog/77.html</guid>
            <pubDate>01/20/09 15:26</pubDate>
            <description><![CDATA[<p>The title says it all: I am looking for a generic implementation that tells me the edit distance of two lists. The implementations on CPAN all seem to work on string-data. Which is OK for finding typos but makes WER calculation tedious. </p><p>So, I want a generic implementation that takes a comparator-function (as in sort {$a &lt;=&gt; $b} @list) and two lists and outputs the edit distance. Nice to have would be distance-weights and really nifty if the value of the comparator function (not only !=0 but how much lower or higher) was taken into account.</p><p>Luckily I don&#39;t need it now, so I don&#39;t have to write it. But it would be a great finger exercise for a Perl-in-NLP class.</p>]]></description>
        </item>        
        <item>
            <title><![CDATA[Literature Day ZWEI]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/Literature+Day+ZWEI</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/Literature+Day+ZWEI</guid>
            <pubDate>07/20/08 20:51</pubDate>
            <description><![CDATA[<p>vorl&auml;ufige Terminvorschl&auml;ge: 24. oder 28. Juli (Meinungen dazu bitte bis 21. Juli) </p><h2>Literaturliste</h2><ol><li>Mangu, Brill, Stolcke (2000): <a href="http://arxiv.org/abs/cs/0010012">Finding consensus in speech recognition: word error minimization and other applications of confusion networks</a>. [Timo, +]<br /></li><li>Wilson, Wilson (2006): <a href="http://people.ucsc.edu/~mlwilson/publications/Turn_Taking.pdf">An oscillator model of the timing of turn-taking</a>. [David]</li><li>was zu SDS-Architektur?<br /></li></ol>]]></description>
        </item>        
        <item>
            <title><![CDATA[Literature Day ZWEI]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/Literature+Day+ZWEI</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/Literature+Day+ZWEI</guid>
            <pubDate>07/14/08 15:42</pubDate>
            <description><![CDATA[<p>vorl&auml;ufige Terminvorschl&auml;ge: 24. oder 28. Juli (Meinungen dazu bitte bis 21. Juli) </p><h2>Literaturliste</h2><ol><li>Mangu, Brill, Stolcke (2000): <a href="http://arxiv.org/abs/cs/0010012">Finding consensus in speech recognition: word error minimization and other applications of confusion networks</a> [Timo, +]<br /></li><li>Oszillator-im-Hirn-Kram [David]</li><li>was zu SDS-Architektur?<br /></li></ol>]]></description>
        </item>        
        <item>
            <title><![CDATA[Higgins]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/Higgins</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/Higgins</guid>
            <pubDate>07/14/08 09:44</pubDate>
            <description><![CDATA[<p>Higgins-Howto&nbsp;</p><ul><li>Mozart &uuml;ber Synaptic installieren:</li><ul><li>mozart</li><li>mozart-gtk</li><li>mozart-stdlib<br /></li></ul><li>Higgins aus svn+ssh://helios/projekte/inpro/INPRO_SVN/Code/Higgins auschecken.<br /></li><li>export HIGGINS_RUN=&lt;pfad-zu-higgins&gt; (am besten gleich in die .bashrc schreiben, dann wei&szlig; es jedes neu ge&ouml;ffnete terminal)<br /></li><li>ozengine launcher/Launcher.exe applications/Numbers/numbers.higgins</li><li>von da aus die einzelnen Module starten (die Inspektoren gehen noch nicht)</li><li>f&uuml;r die Sphinx-Anbindung:</li><ul><li>svn update in Eclipse (die Pakete hei&szlig;en de.cocolab.inpro.higgins.*)</li><li>die sind jetzt veraltet, oder was?<br /></li><li>TODO: Build-Pfad anpassen, noch irgendwas einbinden<br /></li></ul><li>voil&agrave;</li></ul>]]></description>
        </item>        
        <item>
            <title><![CDATA[Higgins]]></title>
            <link>http://coco-lab.org/Elgg/timo/page/Higgins</link>
            <guid isPermaLink="true">http://coco-lab.org/Elgg/timo/page/Higgins</guid>
            <pubDate>07/14/08 09:42</pubDate>
            <description><![CDATA[<p>Higgins-Howto&nbsp;</p><ul><li>Mozart &uuml;ber Synaptic installieren:</li><ul><li>mozart</li><li>mozart-gtk</li><li>mozart-stdlib<br /></li></ul><li>Higgins aus svn+ssh://helios/projekte/inpro/INPRO_SVN/Code/Higgins auschecken.<br /></li><li>export HIGGINS_RUN=&lt;pfad-zu-higgins&gt; (am besten gleich in die .bashrc schreiben, dann wei&szlig; es jedes neu ge&ouml;ffnete terminal)<br /></li><li>ozengine launcher/Launcher.exe applications/Numbers/numbers.higgins</li><li>von da aus die einzelnen Module starten (die Inspektoren gehen noch nicht)</li><li>f&uuml;r die Sphinx-Anbindung:</li><ul><li>svn update in Eclipse (die Pakete hei&szlig;en de.cocolab.inpro.higgins.*)</li><li>TODO: Build-Pfad anpassen, noch irgendwas einbinden<br /></li></ul><li>voil&agrave;</li></ul>]]></description>
        </item>    </channel></rss>