<?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>Ubootworld</title>
	<atom:link href="http://ubootworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubootworld.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 04 Jan 2010 19:50:54 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ubootworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ubootworld</title>
		<link>http://ubootworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ubootworld.wordpress.com/osd.xml" title="Ubootworld" />
	<atom:link rel='hub' href='http://ubootworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Technisat USB IR Empfänger &#8211; beliebig programmieren</title>
		<link>http://ubootworld.wordpress.com/2010/01/03/technisat-usb-ir-empfanger-beliebig-programmieren/</link>
		<comments>http://ubootworld.wordpress.com/2010/01/03/technisat-usb-ir-empfanger-beliebig-programmieren/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 15:44:20 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=55</guid>
		<description><![CDATA[Der USB IR Empfänger von Technisat funktioniert nur mit der Fernbedienung TTS35AI und TS35. Wenn man diesen nun zu Steuerung von VLC, Winamp, Spotify, Power DVD oder ander Anwendungen benutzten möchte, stellt man sehr schnell fest, dass dies nicht möglich ist. Der Grund hierfür ist, dass sich der USB Receiver als &#8222;Tastatur&#8220; &#8211; HID-Tastatur &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=55&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Der USB IR Empfänger von Technisat funktioniert nur mit der Fernbedienung TTS35AI und TS35. Wenn man diesen nun zu Steuerung von VLC, Winamp, Spotify, Power DVD oder ander Anwendungen benutzten möchte, stellt man sehr schnell fest, dass dies nicht möglich ist. Der Grund hierfür ist, dass sich der USB Receiver als &#8222;Tastatur&#8220; &#8211; HID-Tastatur &#8211; anmeldet. So sind die Tasten die man auf der FB drückt ganz normale Tasten, wie von einer Tastatur.</p>
<p>Um dies zu umgehen muss man für den USB IR folgenden Treiber, statt des standardmäßig installierten HID-Tastatur Treiber installieren: <a href="http://home.wanadoo.nl/sjaan.bierman/kbfiltr_ext.zip">http://home.wanadoo.nl/sjaan.bierman/kbfiltr_ext.zip</a></p>
<p>Vor der installation muss man die .inf Datei jedoch noch anpassen:</p>
<blockquote><p><span style="color:#808080;">I had a USB keyboard and a gamepad, both if which came with no specific drivers and were running with the same standard USB keyboard drivers, but I wanted to map them separately. The trick is to load the at the right insertion point in the driver stack. I modified the .inf file for GeomanNL&#8217;s kbfiltr_ext to do this. I changed it so that it would load for the most specific hardware id for the keyboard I wanted to remap (the device id). This is first entry for listed under Hardware Ids for the device in device manager. For example, my gamepad had HID_04f3&amp;Pid_0103&amp;Rev_0105&amp;MI00 (and the Logitech keyboard a different id).</span></p>
<p><span style="color:#ff0000;">I then changed the line </span></p>
<table border="0" cellspacing="1" cellpadding="3" width="90%" align="center">
<tbody>
<tr>
<td><span style="color:#808080;"><strong>Code:</strong></span></td>
</tr>
<tr>
<td>
<div><span style="color:#808080;">%DDK_Ex% = kbfiltr, *PNP0BAAD</span></div>
</td>
</tr>
</tbody>
</table>
<p><span style="color:#808080;"> </span></p>
<p>into</p>
<table border="0" cellspacing="1" cellpadding="3" width="90%" align="center">
<tbody>
<tr>
<td><span style="color:#808080;"><strong>Code:</strong></span></td>
</tr>
<tr>
<td>
<div><span style="color:#808080;">%DDK_Ex% = kbfiltr, HID\VID_04f3&amp;Pid_0103&amp;Rev_0105&amp;MI_00</span></div>
</td>
</tr>
</tbody>
</table>
<p><span style="color:#808080;"> </span></p>
<p><span style="color:#ff0000;">in the kbfiltr.inf file, and replaced all references to STANDARD_Inst with HID_Keyboard_Inst. </span></p>
<p>Now the driver would load for the gamepad, and everything worked fine. (I would then use the extended scancodes in my ahk-script to respond to the keypad).</p></blockquote>
<p>Im Falle des USB IR von Technisat entspricht das der Device ID:<br />
HID\VID_147A&amp;PID_E02D&amp;REV_0005&amp;Col01</p>
<p>Dann den modifizierten Treiber statt der HID-Tastatur im Gerätemanager installieren.<br />
Um die ganzen Signale nun abzufangen nutzt man <a href="http://www.autohotkey.com">autohotkey</a> und schreibt folgendes Script z.b. für VLC, Spotify und Winamp</p>
<blockquote><p><span style="color:#888888;">SC102::<br />
IfWinNotExist ahk_class BaseWindow_RootWnd<br />
return<br />
ControlSend, ahk_parent, z<br />
return</p>
<p>SC103::<br />
IfWinNotExist ahk_class BaseWindow_RootWnd<br />
return<br />
ControlSend, ahk_parent, c<br />
return</p>
<p>SC104::<br />
IfWinNotExist ahk_class BaseWindow_RootWnd<br />
return<br />
ControlSend, ahk_parent, b<br />
return</p>
<p>SC105::<br />
DetectHiddenWindows, On<br />
IfWinNotExist ahk_class SpotifyMainWindow<br />
return<br />
ControlSend, ahk_parent, ^{Left}<br />
DetectHiddenWindows, Off<br />
return</p>
<p>SC106::<br />
DetectHiddenWindows, On<br />
IfWinNotExist ahk_class SpotifyMainWindow<br />
return<br />
ControlSend, ahk_parent, {Space}<br />
DetectHiddenWindows, Off<br />
return</p>
<p>SC107::<br />
DetectHiddenWindows, On<br />
IfWinNotExist ahk_class SpotifyMainWindow<br />
return<br />
ControlSend, ahk_parent, ^{Right}<br />
DetectHiddenWindows, Off<br />
return<br />
</span></p></blockquote>
<blockquote><p><span style="color:#888888;"><br />
#IfWinActive, , VLC (Direct3D output)<br />
{<br />
SC11C::Send {Space}<br />
SC150::Send ^{Down}<br />
SC148::Send ^{Up}<br />
SC14B::Send ^{Left}<br />
SC14D::Send ^{Right}<br />
SC132::Send m<br />
SC143::Send f<br />
}</span></p></blockquote>
<p>QUELLE: <a href="http://www.autohotkey.com/forum/topic10416.html">http://www.autohotkey.com/forum/topic10416.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=55&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2010/01/03/technisat-usb-ir-empfanger-beliebig-programmieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Druckerserver Linksys WPS54G &#8211; WPA2 fähig machen</title>
		<link>http://ubootworld.wordpress.com/2009/11/24/52/</link>
		<comments>http://ubootworld.wordpress.com/2009/11/24/52/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 10:12:47 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Tipp]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=52</guid>
		<description><![CDATA[Druckerserver Linksys WPS54G kommt vom Werk ohne WPA2 Verschlüsselung. Es gibt jedoch einen Trick wie man dies trotzdem benutzen kann: Über ein Firmwareupdate! Danach funktioniert es einwandfrei. Okay, I&#8217;ve got version 1 of the hardware and have finally succeeded in FINDING and installing the v. 6049 firmware, and setting up WPA2. I can confirm that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=52&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Druckerserver Linksys WPS54G kommt vom Werk ohne WPA2 Verschlüsselung. Es gibt jedoch einen Trick wie man dies trotzdem benutzen kann: Über ein Firmwareupdate! Danach funktioniert es einwandfrei.</p>
<blockquote><p>Okay, I&#8217;ve got version 1 of the hardware and have finally succeeded in FINDING and installing the v. 6049 firmware, and setting up WPA2. I can confirm that it now works wirelessly with WPA2 encryption on my home network.</p>
<p><strong>Download from: <a href="http://www.linksysbycisco.com/EU/en/support/WPS54G/download" target="_blank">here</a> (filename: </strong>WPS54Gv1_6049 <strong>) </strong>or <a href="http://download.kinguploader.com/Download.aspx?11974#WPS54Gv1_6049-zip"><strong>here</strong></a><strong> </strong>This sub-branch of the Linksys site still gives you the option to download fw for both versions of the hardware. Select hardware version 1 and it offers you fw v. 6049, select version 2 and you get 6051. Get it while it&#8217;s hot, Linksys could realise at any time that they&#8217;ve actually got a usable download posted, and will probably take it down as soon as they do&#8230;</p>
<p>I used the BiAdmin utility to upgrade the firmware, as <a href="http://pieter.wigleven.com/it/archives/75">described by Pieterw</a> earlier in this thread. Once the upgrade&#8217;s complete, however, BiAdmin doesn&#8217;t seem to support the WPA2 setup. For that you have to access the print server via its web-based admin screen. Do this with the print server wired to the router. Then, when you&#8217;ve set up the SSID and password, disconnect from the router, power it down then power it up again after a few seconds. Once it&#8217;s wirelessly connected you can&#8217;t access the web-based admin screen, but it will print! And BiAdmin will also recognise it on the network.</p></blockquote>
<p>(Quelle: http://forums.linksysbycisco.com/linksys/board/message?board.id=Wireless_Print_Servers&amp;thread.id=3299&amp;view=by_date_ascending&amp;page=3 )</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=52&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/11/24/52/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Geld für alte Handys</title>
		<link>http://ubootworld.wordpress.com/2009/09/10/geld-fur-alte-handys/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/10/geld-fur-alte-handys/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:06:37 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Telefon]]></category>
		<category><![CDATA[Geld]]></category>
		<category><![CDATA[Handy]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=48</guid>
		<description><![CDATA[Unter https://www.asgoodas.nu kann man den Wert seines alten Handys aufgrund des Zustandes erfahren. Man schickt es ein und bekommt die &#8222;Abwrackprämie&#8220; zzgl. Versandkosten erstattet. So kann man noch aus alten Elektronik Artikeln Geld machen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=48&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Unter <a href="https://www.asgoodas.nu">https://www.asgoodas.nu</a> kann man den Wert seines alten Handys aufgrund des Zustandes erfahren. Man schickt es ein und bekommt die &#8222;Abwrackprämie&#8220; zzgl. Versandkosten erstattet.</p>
<p>So kann man noch aus alten Elektronik Artikeln Geld machen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=48&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/10/geld-fur-alte-handys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Spotify &#8211; Ländercode und Einladung umgehen</title>
		<link>http://ubootworld.wordpress.com/2009/09/10/spotify-landercode-und-einladung-umgehen/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/10/spotify-landercode-und-einladung-umgehen/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:38:31 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Spotify]]></category>
		<category><![CDATA[Tipp]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=46</guid>
		<description><![CDATA[Auf der Seite http://spotifyforeveryone.tk kann man sich für Spotify ohne Einladung innerhalb von Sekunden registrieren. Als schönes Feature kann die Seite automatisch die Länderüberprüfung austricksen, so dass man ohne Barrieren Spotify auch in Deutschland nutzen kann.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=46&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Auf der Seite<a href="http://spotifyforeveryone.tk/"> http://spotifyforeveryone.tk</a> kann man sich für Spotify ohne Einladung innerhalb von Sekunden registrieren.</p>
<p>Als schönes Feature kann die Seite automatisch die Länderüberprüfung austricksen, so dass man ohne Barrieren Spotify auch in Deutschland nutzen kann.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=46&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/10/spotify-landercode-und-einladung-umgehen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Typo3 Anleitung</title>
		<link>http://ubootworld.wordpress.com/2009/09/10/typo3-anleitung/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/10/typo3-anleitung/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:35:28 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Dokumentation]]></category>
		<category><![CDATA[Einstieg]]></category>
		<category><![CDATA[Homepage]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=44</guid>
		<description><![CDATA[45min overview: (DE) http://typo3.org/documentation/document-library/extension-manuals/ts45min_de/0.5.1/view/toc/0/ xmapp portable + typo3 installieren: http://www.webmasterpro.de/coding/article/cms-typo3-der-einstieg.html#goto-2-xampp-starten-und-aufraeumen typo3 workshop: http://www.sk-typo3.de/Typo3-Workshop.15.0.html Mehrsprachigkeit einrichten: http://www.training-typo3.com/2008/12/15/typo3-multi-language/ sehr gute Deutsche Dokumentation: http://www.typo3.net/uploads/media/dokumentation.pdf Typo3 vertiefen: http://typo3.org/documentation/document-library/ Typo3 Backend erklärt (Grundlagen): http://www.boku.ac.at/typo3einf/ES-Typo3.pdf<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=44&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>45min overview: (DE)</p>
<p><a href="http://typo3.org/documentation/document-library/extension-manuals/ts45min_de/0.5.1/view/toc/0/">http://typo3.org/documentation/document-library/extension-manuals/ts45min_de/0.5.1/view/toc/0/</a></p>
<p>xmapp portable + typo3 installieren:</p>
<p><a href="http://www.webmasterpro.de/coding/article/cms-typo3-der-einstieg.html#goto-2-xampp-starten-und-aufraeumen">http://www.webmasterpro.de/coding/article/cms-typo3-der-einstieg.html#goto-2-xampp-starten-und-aufraeumen</a></p>
<p>typo3 workshop:</p>
<p><a href="http://www.sk-typo3.de/Typo3-Workshop.15.0.html">http://www.sk-typo3.de/Typo3-Workshop.15.0.html</a></p>
<p>Mehrsprachigkeit einrichten:</p>
<p><a href="http://www.training-typo3.com/2008/12/15/typo3-multi-language/">http://www.training-typo3.com/2008/12/15/typo3-multi-language/</a></p>
<p>sehr gute Deutsche Dokumentation:</p>
<p><a href="http://www.typo3.net/uploads/media/dokumentation.pdf">http://www.typo3.net/uploads/media/dokumentation.pdf</a></p>
<p>Typo3 vertiefen:</p>
<p><a href="http://typo3.org/documentation/document-library/">http://typo3.org/documentation/document-library/</a></p>
<p>Typo3 Backend erklärt (Grundlagen):</p>
<p><a href="http://www.boku.ac.at/typo3einf/ES-Typo3.pdf">http://www.boku.ac.at/typo3einf/ES-Typo3.pdf</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=44&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/10/typo3-anleitung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Webseite Kompatibilitätstest &#8211; IE 6, 7, 8, &#8230;</title>
		<link>http://ubootworld.wordpress.com/2009/09/10/webseite-kompatibilitatstest-ie-6-7-8/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/10/webseite-kompatibilitatstest-ie-6-7-8/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:25:20 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[Homepage]]></category>
		<category><![CDATA[Kompatibilität]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=42</guid>
		<description><![CDATA[Eine Vielzahl von Browsern online / portable startbar, so dass ein ausführlicher Kompatibilitätstest der selbst erstellten Homepage ohne weitere Probleme möglich ist. http://spoon.net/browsers<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=42&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Eine Vielzahl von Browsern online / portable startbar, so dass ein ausführlicher Kompatibilitätstest der selbst erstellten Homepage ohne weitere Probleme möglich ist.</p>
<p><a href="http://spoon.net/browsers/">http://spoon.net/browsers</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=42&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/10/webseite-kompatibilitatstest-ie-6-7-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>0180 günstig anrufen</title>
		<link>http://ubootworld.wordpress.com/2009/09/10/0180-gunstig-anrufen/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/10/0180-gunstig-anrufen/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:15:19 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Telefon]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=39</guid>
		<description><![CDATA[Auf der Seite http://www.tk-anbieter.de findet man zu einer ganzen Reihe von kostenpflichtigen Rufnummer mit entsprechender Alternativnummer zum Festnetzpreis.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=39&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Auf der Seite <a href="http://www.tk-anbieter.de">http://www.tk-anbieter.de</a> findet man zu einer ganzen Reihe von kostenpflichtigen Rufnummer mit entsprechender Alternativnummer zum Festnetzpreis.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=39&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/10/0180-gunstig-anrufen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Spotify Werbung unterbinden</title>
		<link>http://ubootworld.wordpress.com/2009/09/09/spotify-werbung-unterbinden/</link>
		<comments>http://ubootworld.wordpress.com/2009/09/09/spotify-werbung-unterbinden/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 18:51:38 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Spotify]]></category>
		<category><![CDATA[Tipp]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=37</guid>
		<description><![CDATA[Auf dieser Seite findet man ein Script, welches Spotify automatisch bei Werbung auf Mute stellt http://cosechapropia.blogspot.com/2009/09/mukote-11-sin-instalacion.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=37&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Auf dieser Seite findet man ein Script, welches Spotify automatisch bei Werbung auf Mute stellt</p>
<p><a href="http://cosechapropia.blogspot.com/2009/09/mukote-11-sin-instalacion.html">http://cosechapropia.blogspot.com/2009/09/mukote-11-sin-instalacion.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=37&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/09/09/spotify-werbung-unterbinden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Geniale Flugsuchmaschine &#8211; Tag nach Kosten auswählen</title>
		<link>http://ubootworld.wordpress.com/2009/08/10/geniale-flugsuchmaschine-tag-nach-kosten-auswahlen/</link>
		<comments>http://ubootworld.wordpress.com/2009/08/10/geniale-flugsuchmaschine-tag-nach-kosten-auswahlen/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 21:16:51 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Flüge]]></category>
		<category><![CDATA[Flug]]></category>
		<category><![CDATA[Flugsuche]]></category>
		<category><![CDATA[Günstig]]></category>
		<category><![CDATA[Reisen]]></category>
		<category><![CDATA[Tipp]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=34</guid>
		<description><![CDATA[Hier kann man seine Reisedaten nach Flugkosten ganz Tagesabhängig aussuchen. Dadurch wird es unschlagbar günstig! http://www.swoodoo.com „Die Flugsuchmaschine Swoodoo sucht auf Knopfdruck die günstigsten Flüge in alle Welt &#8211; und das jetzt noch besser mit neuer Bedienoberfläche und erweiterten Funktionen. &#8230;“ „Zeigt zusätzlich auch einen Flugpreisverlauf, der verrät an welchen Tagen Tickets billiger/teurer sind. Preisvergleiche [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=34&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hier kann man seine Reisedaten nach Flugkosten ganz Tagesabhängig aussuchen. Dadurch wird es unschlagbar günstig!</p>
<p><a href="http://www.swoodoo.com/">http://www.swoodoo.com</a></p>
<table id="pr-table" style="height:150px;" border="0" width="510" summary="review overview from product">
<tbody>
<tr>
<td>
<div>„Die Flugsuchmaschine Swoodoo sucht auf Knopfdruck die günstigsten Flüge in alle Welt &#8211; und das jetzt noch besser mit neuer Bedienoberfläche und erweiterten Funktionen. &#8230;“</div>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td>
<div>„Zeigt zusätzlich auch einen Flugpreisverlauf, der verrät an welchen Tagen Tickets billiger/teurer sind. Preisvergleiche auch bei discountflieger.de plus News möglich.</div>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=34&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/08/10/geniale-flugsuchmaschine-tag-nach-kosten-auswahlen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Virtual Audio Cable &#8211; Virtuelle Audiokabel durch den PC verlegen</title>
		<link>http://ubootworld.wordpress.com/2009/08/09/virtual-audio-cable-virtuelle-audiokabel-durch-den-pc-verlegen/</link>
		<comments>http://ubootworld.wordpress.com/2009/08/09/virtual-audio-cable-virtuelle-audiokabel-durch-den-pc-verlegen/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 22:35:14 +0000</pubDate>
		<dc:creator>ubootworld</dc:creator>
				<category><![CDATA[Musik]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Musikübertragung]]></category>

		<guid isPermaLink="false">http://ubootworld.wordpress.com/?p=26</guid>
		<description><![CDATA[Mit &#8222;Virtual Audio Cable&#8220; können Sie beliebige Soundsignale in andere Anwendungen leiten. Sie möchten einen Webradio-Stream zum Bearbeiten direkt in einen Audio-Editor umleiten? Mit dem &#8222;Virtual Audio Cable&#8220; ist das problemlos möglich. Wie der Name bereits verrät, erstellt das Tool ein virtuelles Audiokabel, über das der Audio-Stream geleitet wird. Der Clou: Sie können mehrere Kabel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=26&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;">
<p style="text-align:left;"><strong><img class="aligncenter" src="http://img6.imageshack.us/img6/9184/17362489309a5528947.jpg" alt="" width="453" height="229" /></strong></p>
<p style="text-align:left;"><strong>Mit &#8222;Virtual Audio Cable&#8220; können Sie beliebige Soundsignale in andere Anwendungen leiten.</strong></p>
<p>Sie möchten einen Webradio-Stream zum Bearbeiten direkt in einen Audio-Editor umleiten? Mit dem &#8222;Virtual Audio Cable&#8220; ist das problemlos möglich.</p>
<p>Wie der Name bereits verrät, erstellt das Tool ein virtuelles Audiokabel, über das der Audio-Stream geleitet wird. Der Clou: Sie können mehrere Kabel parallel anlegen, die sich aber nicht überschneiden müssen oder automatisch zusammengemixt werden.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ubootworld.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ubootworld.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ubootworld.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ubootworld.wordpress.com&amp;blog=8925588&amp;post=26&amp;subd=ubootworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ubootworld.wordpress.com/2009/08/09/virtual-audio-cable-virtuelle-audiokabel-durch-den-pc-verlegen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2096226906c4ebf3d24fd1084e386a47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ubootworld</media:title>
		</media:content>

		<media:content url="http://img6.imageshack.us/img6/9184/17362489309a5528947.jpg" medium="image" />
	</item>
	</channel>
</rss>
