<?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/"
	>

<channel>
	<title>webfraggle</title>
	<atom:link href="http://www.ketzler.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ketzler.de</link>
	<description>Christoph Ketzler&#039;s Blog</description>
	<lastBuildDate>Sat, 24 Jul 2010 09:08:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>AS3 FLVPlayback smoothing the scaling.</title>
		<link>http://www.ketzler.de/2010/07/as3-flvplayback-smoothing-the-scaling/</link>
		<comments>http://www.ketzler.de/2010/07/as3-flvplayback-smoothing-the-scaling/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 10:33:35 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Adobe Flash Platform]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[FLVPlayback]]></category>
		<category><![CDATA[scaling]]></category>
		<category><![CDATA[smooth]]></category>
		<category><![CDATA[smoothing]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=552</guid>
		<description><![CDATA[I searched a little while, found only AS2 workarounds, but here is the AS3 version of interpolated, smooth video scaling of a FLVPlayback. //playback is your FLVplayback instance playback.getVideoPlayer(playback.activeVideoPlayerIndex).smoothing = true; I use it after the ready event was send.]]></description>
			<content:encoded><![CDATA[<p>I searched a little while, found only AS2 workarounds, but here is the AS3 version of interpolated, smooth video scaling of a FLVPlayback.</p>
<p><code>//playback is your FLVplayback instance<br />
playback.getVideoPlayer(playback.activeVideoPlayerIndex).smoothing = true;</code></p>
<p>I use it after the ready event was send.</p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/07/as3-flvplayback-smoothing-the-scaling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encode and deliver MP4 Video for Flash, iPhone, iPad, Android, Quicktime with timeshift possibility</title>
		<link>http://www.ketzler.de/2010/07/encode-and-deliver-mp4-video-for-flash-iphone-ipad-android-quicktime-with-timeshift-possibility/</link>
		<comments>http://www.ketzler.de/2010/07/encode-and-deliver-mp4-video-for-flash-iphone-ipad-android-quicktime-with-timeshift-possibility/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 20:30:42 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Adobe Flash Platform]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Flash media server]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[mp4box]]></category>
		<category><![CDATA[quicktime]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=474</guid>
		<description><![CDATA[A big challenge was to find a solution to encode and deliver videos for as much platforms as possible. The only thing that was clear I had to use mpeg4 for max. compatibility. Initial Position: We have many PAL videos with up to 20 different languages. All are around an hour. They are organized in [...]]]></description>
			<content:encoded><![CDATA[<p>A big challenge was to find a solution to encode and deliver videos for <strong>as much platforms as possible</strong>. The only thing that was clear I had to use mpeg4 for max. compatibility.<br />
<span id="more-474"></span><br />
Initial Position: We have many PAL videos with up to 20 different languages. All are around an hour. They are organized in chapters. </p>
<h4>Client needs:</h4>
<ul>
<li>Multilanguage</li>
<li>Timeshift / Pseudo-streaming / Random access to jump directly to a chapter</li>
<li>Two different bandwidths</li>
<li>Maximum quality</li>
<li>Download security</li>
<li>Platforms: Desktop (Flash), iPhone, iPad, Android and maybe more in the future</li>
</ul>
<p>My main thought was, ok, many of the features needed will work with Adobes Flash Media Server. But how can I deliver skippable video to iDevices with the same comfort. And another challenge was the client&#8217;s network. It&#8217;s a big company so they have a firewall and a proxy with a strong content filter.</p>
<h4>Server possibilities:</h4>
<ul>
<li><strong>Flash Media Server</strong> (rtmp and rtmpt via http tunneling, easy install, works out of the box)</li>
<li><strong>red5</strong> (rtmp, not so easy to configure, java knowledge needed)</li>
<li><strong>Webserver only</strong> (http progressive download no skipping)</li>
<li><a href="http://stream.xmoov.com/"><strong>xmoovstream</strong></a> (http, php script, random access for iDevices but not for mp4 in combination with flash)
</li>
<li><a href="http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Apache-Version2"><strong>H264 streaming extension by trac</strong></a> for a variety of webservers (http, pseudo-streaming mp4 video for Flash and iDevices)
</ul>
<p>After some tests I made my decision to use <strong>Flash Media Server with the bundled Apache webserver extended by the h264 streaming extension</strong>. This works fine for all purposes and is in my opinion the best and easiest combination of rtmp and http with skipping directly into the video without loading it completely, I think it&#8217;s also called random access. And the best, you only need to store your files once on the server. </p>
<p>And now to the encoding part. It must be a fast encoding because we have many different audio languages, the video track is almost the same. The only way to do this, is the possibility to encode the video separately from the audio and muxing it together.</p>
<h4>Encoding possibilities:</h4>
<ul>
<li><strong>Adobe Media Encoder</strong> (Good encoding quality, No muxing (maybe it can be done with external tools), sometimes the videos will not play on iDevices, Flash needs to be installed on the encoding computer)</li>
<li><strong>Sorenson Squeeze</strong> (No muxing(maybe it can be done with external tools), didn&#8217;t find any good quality encoding settings)</li>
<li><strong>ffmpeg</strong> in combination with <strong>mp4box</strong> (Good encoding quality, muxing possible, nothing needs to be installed on the encoding computer, just put the binaries, a batch file and the source files on the network or a external hard-drive and go)</li>
</ul>
<p>It&#8217;s clear, that I used the last one. If you want to use it too, just google for some binaries for your operating system. Important is that you find a <strong>ffmpeg version with libx264</strong> included. </p>
<h4>Encoding settings:</h4>
<p>Both are two pass encoding settings for best quality</p>
<p><strong>High Quality (Video &#038; Audio)</strong> &#8211; Flash, iPad, Quicktime (not on iPhone because this uses a better h264 profile the iPhone can&#8217;t play) maybe iPhone 4:</p>
<p>Pass 1;<br />
<code>ffmpeg -y -i in.avi -pass 1 -vcodec libx264 -b 750k -g 300 -bf 3 -refs 6 -b_strategy 1 -coder 1 -qmin 10 -qmax 51 -sc_threshold 40 -flags +loop -cmp +chroma -me_range 16 -me_method umh -subq 7 -i_qfactor 0.71 -qcomp 0.6 -qdiff 4 -directpred 3 -flags2 +dct8x8+wpred+bpyramid+mixed_refs -trellis 1 -partitions +parti8x8+parti4x4+partp8x8+partp4x4+partb8x8 -acodec libfaac -ab 64k out-high.mp4</code></p>
<p>Pass 2:<br />
<code>ffmpeg -y -i in.avi -pass 2 -vcodec libx264 -b 750k -g 300 -bf 3 -refs 6 -b_strategy 1 -coder 1 -qmin 10 -qmax 51 -sc_threshold 40 -flags +loop -cmp +chroma -me_range 16 -me_method umh -subq 7 -i_qfactor 0.71 -qcomp 0.6 -qdiff 4 -directpred 3 -flags2 +dct8x8+wpred+bpyramid+mixed_refs -trellis 1 -partitions +parti8x8+parti4x4+partp8x8+partp4x4+partb8x8 -acodec libfaac -ab 64k out-high.mp4<br />
</code></p>
<p><strong>Low Quality (Video &#038; Audio)</strong> (works on all platforms):</p>
<p>Pass 1:<br />
<code>ffmpeg -y -i in.avi -pass 1 -s 384x288  -vcodec libx264 -b 230k -flags +loop+mv4 -cmp 256 -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -me_method hex -subq 7 -trellis 1 -refs 5 -bf 0 -flags2 +mixed_refs -coder 0 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 10 -qmax 51 -qdiff 4 -acodec libfaac -ab 32k -ac 1 out-low.mp4</code></p>
<p>Pass 2:<br />
<code>ffmpeg -y -i in.avi -pass 2 -s 384x288  -vcodec libx264 -b 230k -flags +loop+mv4 -cmp 256 -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -me_method hex -subq 7 -trellis 1 -refs 5 -bf 0 -flags2 +mixed_refs -coder 0 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 10 -qmax 51 -qdiff 4 -acodec libfaac -ab 32k -ac 1 out-low.mp4<br />
</code></p>
<p><strong>Adding the needed hinting stream and interleaving the stream in chunks</strong> (same for both):</p>
<p><code>mp4box -inter 500 -hint out-high.mp4<br />
mp4box -inter 500 -hint out-low.mp4</code></p>
<h4>Audio only encoding</h4>
<p><code>ffmpeg -y -i "audio-lc.wav"  -acodec libfaac -ab 64k -ac 1 audio-lc-64.m4a<br />
ffmpeg -y -i "audio-lc.wav"  -acodec libfaac -ab 32k -ac 1 audio-lc-32.m4a</code></p>
<h4>Muxing Audio and Video together</h4>
<p><code>mp4box -add audio-lc-32.m4a#audio out-low-lc.mp4<br />
mp4box -add out-low.mp4#video out-low-lc.mp4<br />
mp4box -inter 500 -hint out-low-lc.mp4<br/><br />
mp4box -add audio-lc-64.m4a#audio out-high-lc.mp4<br />
mp4box -add out-high.mp4#video out-high-lc.mp4<br />
mp4box -inter 500 -hint out-high-lc.mp4</code></p>
<p>A good player to test all this is the <a href="http://www.longtailvideo.com/players/jw-flv-player">jw player</a>. It is also available as html5 beta version so you can also try it on an iPad. </p>
<p>We are developing our own player because we need some special features like chaptermenus and subtitles. </p>
<p>Hope this can help someone. If you have some questions just ask in comments. </p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/07/encode-and-deliver-mp4-video-for-flash-iphone-ipad-android-quicktime-with-timeshift-possibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quicktime export settings: iMovie to PS3 full hd</title>
		<link>http://www.ketzler.de/2010/07/quicktime-export-settings-imovie-to-ps3-full-hd/</link>
		<comments>http://www.ketzler.de/2010/07/quicktime-export-settings-imovie-to-ps3-full-hd/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 20:57:18 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[imovie]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=508</guid>
		<description><![CDATA[Here are my export settings for mp4 movies using &#8220;Export with Quicktime&#8221; in iMovie which are working on a Playstation 3. Maybe it helps someone, at least I now know where to find them.]]></description>
			<content:encoded><![CDATA[<p>Here are my export settings for mp4 movies using &#8220;Export with Quicktime&#8221; in iMovie which are working on a Playstation 3. Maybe it helps someone, at least I now know where to find them. <img src='http://www.ketzler.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
<span id="more-508"></span></p>
<p><img src="http://www.ketzler.de/wp-content/uploads/2010/07/ps3-1.jpg" alt="" title="ps3-1" width="556" height="400" class="alignnone size-full wp-image-515" /></p>
<p><img src="http://www.ketzler.de/wp-content/uploads/2010/07/ps3-2.jpg" alt="" title="ps3-2" width="597" height="565" class="alignnone size-full wp-image-516" /></p>
<p><img src="http://www.ketzler.de/wp-content/uploads/2010/07/ps3-3.jpg" alt="" title="ps3-3" width="597" height="566" class="alignnone size-full wp-image-517" /></p>
<p><img src="http://www.ketzler.de/wp-content/uploads/2010/07/ps3-4.jpg" alt="" title="ps3-4" width="597" height="567" class="alignnone size-full wp-image-518" /></p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/07/quicktime-export-settings-imovie-to-ps3-full-hd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m very happy&#8230;</title>
		<link>http://www.ketzler.de/2010/07/im-very-happy/</link>
		<comments>http://www.ketzler.de/2010/07/im-very-happy/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:46:36 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Adobe Flash Platform]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=471</guid>
		<description><![CDATA[&#8230;because Serge Jespers an Adobe platform evangelist likes my work and wrote a short article about my Dr&#228;ger Carina® on Multi-screen video.]]></description>
			<content:encoded><![CDATA[<p>&#8230;because <a href="http://www.webkitchen.be/">Serge Jespers</a> an Adobe platform evangelist likes my work and wrote a <a href="http://www.webkitchen.be/2010/07/06/multi-screen-medical-device-simulation/">short article</a> about my Dr&#228;ger Carina® on Multi-screen video. </p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/07/im-very-happy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simulations of medical devices on touch devices, multi-screen publishing (Desktop, iPhone, iPad, Android &#8230;)</title>
		<link>http://www.ketzler.de/2010/07/simulations-of-medical-devices-on-touch-devices-desktop-iphone-ipad-android/</link>
		<comments>http://www.ketzler.de/2010/07/simulations-of-medical-devices-on-touch-devices-desktop-iphone-ipad-android/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 20:29:00 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Adobe Flash Platform]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Flash CS5]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Multiscreen]]></category>
		<category><![CDATA[Open Screen Project]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=385</guid>
		<description><![CDATA[At innovation mecom, where I&#8217;m employed, we developed a simulation for training and marketing of a Dr&#228;ger NIV ventilator called Carina®. It&#8217;s a small handy device to ventilate patients in hospitals. This Flash AS3 simulation reproduces all functions of the real device. So it is possible to get a real good impression of it even [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.innovationmecom.de">innovation mecom</a>, where I&#8217;m employed, we developed a simulation for training and marketing of a Dr&#228;ger NIV ventilator called<a href="http://www.draeger.com/UK/en/products/medical_ventilation/subacute_ventilation/rsp_Carina.jsp"> Carina®.</a> It&#8217;s a small handy device to ventilate patients in hospitals. This Flash AS3 simulation reproduces all functions of the real device. So it is possible to get a real good impression of it even without using a real device. </p>
<p><a href="http://www.draeger.com/local/products/carina_trainer/start.html">The online version of this trainer can be found here.</a></p>
<p>I did the coding of this simulation and I thought it would be an amazing experience to use this on an iPhone or another touch device.<br />
<img src="http://www.ketzler.de/wp-content/uploads/2010/07/carina-iphone.jpg" alt="" title="carina-iphone" width="640" height="360" class="alignnone size-full wp-image-460" /></p>
<p><span id="more-385"></span> But there is no flash on Apples iDevices. So, the first time I heard about that Adobe will integrate an iPhone packager in his Flash CS5 version I was very happy and curious about it. I couldn&#8217;t wait for that version to try it. But then, short time before the CS5 release, Steve Jobs changed his terms and conditions. He integrated only one sentence which made me sad again. Because of that sentence it is not allowed to submit apps to the app store not developed with Xcode.</p>
<p>But Adobe released the iPhone packager anyway and I was able to do some tests with it even if I never will submit a Flash App to the Apple Store. But Adobe was not sleeping. They did an alliance with all other mobile device manufactures. They call it the <a href="http://www.openscreenproject.org/">Open Screen Project</a>. And the first result is the Flash Player 10.1 for Android 2.2 devices. So in the near future many Android and Flash enabled touch devices will come to the market.</p>
<p>And here is the result of my first studies with the iPhone and Android packager.<br />
I just had to reposition some buttons because of the smaller resolution and packaged it with the iPhone packager in Flash CS5. This worked great and the result was amazingly good.</p>
<p>Next thing was to try it on Android. I registered for the developer beta program at adobe and tried the android packager for CS5. This works also very fine. Unfortunately I didn&#8217;t own an Android device so I had to use the virtual simulator which is really slow on my notebook. But the main thing is, that it works also without any bigger adaptions. And last week I got an iPad. And needless to say, I tried the carina app there too. It&#8217;s just a scaled iPhone version but the feeling of using it is really really good. I think it is not possible to get it nearer to a real ventilation device. </p>
<p>Here is a short video of the results trying publishing Flash on multiple devices (Browser, iPhone, iPad and the Android Simulator).</p>
<p><object type="application/x-shockwave-flash" width="640" height="360" data="http://stream.ketzler.de/xsexamples/servers/embed/video/mp4/Carina_Multiscreen"><param name="movie" value="http://stream.ketzler.de/xsexamples/servers/embed/video/mp4/Carina_Multiscreen"/><param name="allowfullscreen" value="true"/><video src="http://stream.ketzler.de/xsexamples/servers/video/Carina_Multiscreen.mp4" width="640" height="360" controls /><br />
</object></p>
<p>So I&#8217;m really curious about what Adobe does next. They announced an Android tablet with Flash Player and AIR. And then we get so much new and amazing possibilities using multitouch devices for simulating medical devices for training.</p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/07/simulations-of-medical-devices-on-touch-devices-desktop-iphone-ipad-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://stream.ketzler.de/xsexamples/servers/video/Carina_Multiscreen.mp4" length="21793660" type="video/mp4" />
		</item>
		<item>
		<title>$1 Recognizer &#8211; Nachtrag</title>
		<link>http://www.ketzler.de/2010/06/1-recognizer-nachtrag/</link>
		<comments>http://www.ketzler.de/2010/06/1-recognizer-nachtrag/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 20:18:50 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=398</guid>
		<description><![CDATA[Gerade durch Zufall gefunden. Gesten-Erkennung mit Flash. Freut mich, dass jemand meinen Code nutzt. Das best&#228;rkt mich darin weiter kleine Schnipsel, Ideen und L&#246;sungen zu posten.]]></description>
			<content:encoded><![CDATA[<p>Gerade durch Zufall gefunden. <a href="http://www.info-design.net/multitouch/2010/04/25/gesten-erkennung-mit-flash/">Gesten-Erkennung mit Flash</a>. Freut mich, dass jemand meinen Code nutzt. Das best&#228;rkt mich darin weiter kleine Schnipsel, Ideen und L&#246;sungen zu posten.</p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/06/1-recognizer-nachtrag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool 3D Demo with AIR on Android</title>
		<link>http://www.ketzler.de/2010/06/cool-3d-demo-with-air-on-android/</link>
		<comments>http://www.ketzler.de/2010/06/cool-3d-demo-with-air-on-android/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 07:46:12 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[Adobe Flash Platform]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[away 3d]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=390</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Minzpl8ENzs&#038;hl=de_DE&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Minzpl8ENzs&#038;hl=de_DE&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/06/cool-3d-demo-with-air-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>innovation mecom gewinnt drei Awards</title>
		<link>http://www.ketzler.de/2010/06/innovation-mecom-gewinnt-drei-awards/</link>
		<comments>http://www.ketzler.de/2010/06/innovation-mecom-gewinnt-drei-awards/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 12:31:41 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Arbeit]]></category>
		<category><![CDATA[award]]></category>
		<category><![CDATA[gewonnen]]></category>
		<category><![CDATA[intermedia-globe]]></category>
		<category><![CDATA[WorldMediaFestival]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=374</guid>
		<description><![CDATA[innovation mecom GmbH, bei der ich arbeite, hat beim diesj&#228;hrigen World Media Festival drei intermedia-globe Awards f&#252;r unsere Audi WBTs gewonnen. Unter anderem den begehrten GRAND AWARD Da ich daran auch einen gro&#223;en Anteil hatte, denke ich, sollte ich das hier einfach mal kundtun. Hier noch ein paar Links dazu: Die Gewinnerliste: http://www.worldmediafestival.org/de/festival_informationen/gewinner In den [...]]]></description>
			<content:encoded><![CDATA[<p>innovation mecom GmbH, bei der ich arbeite, hat beim diesj&#228;hrigen World Media Festival drei intermedia-globe Awards f&#252;r unsere Audi WBTs gewonnen. Unter anderem den begehrten GRAND AWARD Da ich daran auch einen gro&#223;en Anteil hatte, denke ich, sollte ich das hier einfach mal kundtun. </p>
<p><a href="http://www.ketzler.de/wp-content/uploads/2010/06/100528_Festival.jpg"><img src="http://www.ketzler.de/wp-content/uploads/2010/06/100528_Festival-300x226.jpg" alt="" title="100528_Festival" width="300" height="226" class="alignnone size-medium wp-image-376" /></a></p>
<p>Hier noch ein paar Links dazu:</p>
<p>Die Gewinnerliste:<br />
<a href="http://www.worldmediafestival.org/de/festival_informationen/gewinner">http://www.worldmediafestival.org/de/festival_informationen/gewinner</a></p>
<p>In den News:<br />
<a href="http://www.osthessen-news.de/beitrag_C.php?id=1182480">http://www.osthessen-news.de/beitrag_C.php?id=1182480</a><br />
<a href="http://www.nachrichten.de/panorama/Riesenerfolg-Audi-Produktion-Wettbewerbsbeitrag-Web-Based-Training-cid_2940668/">http://www.nachrichten.de/panorama/Riesenerfolg-Audi-Produktion-Wettbewerbsbeitrag-Web-Based-Training-cid_2940668/</a><br />
<a href="http://www.fuldaer-nachrichten.de/?p=60716">http://www.fuldaer-nachrichten.de/?p=60716</a><br />
uvm.</p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/06/innovation-mecom-gewinnt-drei-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content-Aware-Fill in Photoshop CS5</title>
		<link>http://www.ketzler.de/2010/05/content-aware-fill-in-photoshop-cs5/</link>
		<comments>http://www.ketzler.de/2010/05/content-aware-fill-in-photoshop-cs5/#comments</comments>
		<pubDate>Sat, 01 May 2010 18:43:33 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/?p=369</guid>
		<description><![CDATA[Juchu, seit gestern Abend gibt es die CS5 Programme als Trial zum Download. Deshalb habe ich &#252;ber Nacht erst mal Flash und Photoshop geladen. Hier ein erster Test des neuen Killer Features: &#8220;Content-Aware-Fill&#8221; Das Bild vorher: Das Bild nach 5sec Arbeit, nur die Auswahl der D&#228;cher. Dann schnell den Content-Aware Fill rechnen lassen und schwups: [...]]]></description>
			<content:encoded><![CDATA[<p>Juchu, seit gestern Abend gibt es die CS5 Programme als Trial zum Download. </p>
<p>Deshalb habe ich &#252;ber Nacht erst mal Flash und Photoshop geladen.</p>
<p>Hier ein erster Test des neuen Killer Features: &#8220;Content-Aware-Fill&#8221;</p>
<p>Das Bild vorher:<br />
<a href="http://www.flickr.com/photos/webfraggle/4568228979/" class="tt-flickr tt-flickr-Medium" title="content-aware-before"><img class="alignnone" src="http://farm5.static.flickr.com/4034/4568228979_259c3b1185.jpg" alt="content-aware-before" width="500" height="375" /></a> </p>
<p>Das Bild nach 5sec Arbeit, nur die Auswahl der D&#228;cher. Dann schnell den Content-Aware Fill rechnen lassen und schwups:<br />
<a href="http://www.flickr.com/photos/webfraggle/4568228315/" class="tt-flickr tt-flickr-Medium" title="content-aware-after"><img class="alignnone" src="http://farm5.static.flickr.com/4030/4568228315_7072f0b852.jpg" alt="content-aware-after" width="500" height="375" /></a> </p>
<p>Bei einem &#228;hnlichen Bild, wie auf der Vorschau auf der FFK ging das nicht so gut. Aber optisch, wenn man nur schnell dr&#252;ber schaut, passt das eigtl. immer ziemlich gut.<br />
<a href="http://www.flickr.com/photos/webfraggle/4568278663/" class="tt-flickr tt-flickr-Medium" title="ca2-before"><img class="alignnone" src="http://farm4.static.flickr.com/3349/4568278663_299a03b621.jpg" alt="ca2-before" width="500" height="375" /></a><br />
<a href="http://www.flickr.com/photos/webfraggle/4568277127/" class="tt-flickr tt-flickr-Medium" title="ca2-after"><img class="alignnone" src="http://farm5.static.flickr.com/4026/4568277127_e579808d57.jpg" alt="ca2-after" width="500" height="375" /></a> </p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/05/content-aware-fill-in-photoshop-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Traurig&#8230;</title>
		<link>http://www.ketzler.de/2010/02/traurig/</link>
		<comments>http://www.ketzler.de/2010/02/traurig/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 16:52:19 +0000</pubDate>
		<dc:creator>webfraggle</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.ketzler.de/2010/02/traurig/</guid>
		<description><![CDATA[Das hier geht an alle Hinterbliebenen, an alle &#252;ber den Tod hinaus Liebenden. Das hier geht an alle Hinterbliebenen, an alle &#252;ber den Tod hinaus Liebenden. An jene, die am Leben geblieben sind, um Trauer zu tragen. So wahr wir verschieden sind, ich m&#246;chte euch sagen, dass ich wei&#223;, wie ihr euch f&#252;hlt. Da wird [...]]]></description>
			<content:encoded><![CDATA[<p>Das hier geht an alle Hinterbliebenen,<br />
an alle &#252;ber den Tod hinaus Liebenden.<br />
Das hier geht an alle Hinterbliebenen,<br />
an alle &#252;ber den Tod hinaus Liebenden.</p>
<p>An jene, die am Leben geblieben sind,<br />
um Trauer zu tragen.<br />
So wahr wir verschieden sind,<br />
ich m&#246;chte euch sagen,<br />
dass ich wei&#223;, wie ihr euch f&#252;hlt.<br />
Da wird der Boden unter Einem einfach weggesp&#252;lt,<br />
wenn etwas Gro&#223;es wie der Tod<br />
sich durch das Leben w&#252;hlt<br />
und dennoch dauert es Tage,<br />
bis man irgendwas f&#252;hlt,<br />
bis man verletzt am Boden liegt.</p>
<p>Was soll dich jetzt noch ber&#252;hren?<br />
Du hast verloren, was du liebst<br />
und diese Leere l&#228;sst dich sp&#252;ren,<br />
dass du lebst.<br />
Wie grotesk.<br />
Wie verzehrt sich Liebe in Schmerz,<br />
zerfetzt dich und bricht dir das Herz.</p>
<p>Und du zitterst und frierst und<br />
dir ist k&#252;hl von innen<br />
und du kriegst das Gef&#252;hl,<br />
nie wieder lieben zu k&#246;nnen.<br />
Auf diese Ohnmacht folgt Wut,<br />
die kaum Grenzen kennt.<br />
Das ist die Liebe,<br />
die in deinem Herzen brennt.<br />
Und obwohl du sie kennst, die Zeit<br />
und ihre Regeln,<br />
steht das dem Leid dem Moment<br />
nicht entgegen.<br />
Also l&#228;sst du es zu,<br />
und es dringt in dich ein.<br />
Du wehrst dich nicht mehr,<br />
du l&#228;sst es herein.</p>
<p>Und dann begreifst du,<br />
wenn du daran nicht zerbrichst,<br />
dann reifst du.<br />
Und dann entdeckst du,<br />
wenn du das &#252;berstehst,<br />
dann w&#228;chst du.</p>
<p>An alle Hinterbliebenen.<br />
Das hier geht an alle Hinterbliebenen,<br />
an alle &#252;ber den Tod hinaus Liebenden.</p>
<p>Damit ihr mit den Schmerzen nicht<br />
allein seid,<br />
mein Beileid,<br />
aus tiefstem Herzen,<br />
mein Beleid.<br />
Und bis ihr von den Schmerzen befreit seid,<br />
aus tiefstem Herzen, mein Beileid.</p>
<p>Damit ihr mit den Schmerzen nicht<br />
allein seid,<br />
mein Beileid,<br />
aus tiefstem Herzen,<br />
mein Beleid.<br />
Und bis ihr von den Schmerzen befreit seid,<br />
aus tiefstem Herzen, mein Beileid.</p>
<p>Das hier geht an alle Hinterbliebenen,<br />
an alle &#252;ber den Tod hinaus Liebenden.<br />
Das hier geht an alle Hinterbliebenen,<br />
an alle &#252;ber den Tod hinaus Liebenden.</p>
<p>An jene, die am Leben geblieben sind,<br />
um Trauer zu tragen.<br />
So wahr wir verschieden sind,<br />
ich m&#246;chte euch sagen,<br />
keine Schmerzen dieser Welt k&#246;nnen von Dauer sein<br />
und keiner ist mit seiner Trauer hier allein.</p>
<p>]]></content:encoded>
			<wfw:commentRss>http://www.ketzler.de/2010/02/traurig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
