<?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>Hello. My name is Václav Vančura. &#187; music</title>
	<atom:link href="http://vaclav.vancura.org/tag/music/feed" rel="self" type="application/rss+xml" />
	<link>http://vaclav.vancura.org</link>
	<description></description>
	<lastBuildDate>Sat, 31 Jul 2010 12:47:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>MumboJumboT: Done</title>
		<link>http://vaclav.vancura.org/mumbojumbot-done</link>
		<comments>http://vaclav.vancura.org/mumbojumbot-done#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:22:31 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2368</guid>
		<description><![CDATA[I am finally done with the MumboJumboT project.

As you may know from this blog, I recently wrote a few paragraphs about progress of the project. And there is even MumboJumboT's Twitter stream with more detailed tweets. But -- it's hard to tell -- now I am not very happy with the results and I have to confess I failed on several places.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">I am finally done with the MumboJumboT project.</span>
</p>

<p>As you may know from this blog, I recently wrote a few paragraphs about progress of the project. And there is even <a href="http://twitter.com/mumbojumbot">MumboJumboT&#8217;s Twitter stream</a> with more detailed tweets. But &#8212; believe me, it&#8217;s hard to tell &#8212; now I am not very happy with the results and I have to confess I failed on several places.</p>

<p>First, as usual, I was way too optimistic. I thought I&#8217;d be able to code more and harder, but it was not really possible for several reasons. Just a few hours before I started the project I had finished another long term job and hence I was somewhat tired. Our kids were sick two days as well and on the end I was lazy too :) As you may know I planned to create a blabbing machine. And&#8230; Failed. Sorry about that, next time I&#8217;ll think twice before I start a project like this one.</p>

<p>But! I think even with my failures I&#8217;ve got something for you. The MumboJumboT project lite. Very lite. If you&#8217;re interested, I&#8217;d be glad to show you my humble Adobe AIR application, which you can install by clicking the badge <a href="http://mumbojumbot.ambilab.com/client/">here</a>.</p>

<p><span id="more-2368"></span></p>

<h3>So what is it all about?</h3>

<p>This is just an eye candy and mainly a tutorial AIR app. You can click links below to read more on how the project was done and meanwhile you can play with it.</p>

<p>MumboJumboT allows you to:</p>

<ul>
<li><p>Load a sample song (thanks to <a href="http://jimmac.musichall.cz">Jakub Steiner aka Jimmac</a> for The Sphere song from his <a href="http://jimmac.musichall.cz/organic.php">Organic</a> album, the other song done by me),</p></li>
<li><p>Load your very own <a href="http://en.wikipedia.org/wiki/Vorbis">Ogg Vorbis</a> file (info on <a href="http://xiph.org">Xiph.org</a> as well),</p></li>
<li><p>Play an Ogg file &#8212; actually it was not possible before, because Flash knows just MP3s. If you don&#8217;t want to get into dirty details on the Wiki page, you just need to know Ogg provides much higher quality on lower bitrates. The playback is done by <a href="http://automatastudios.com">Branden Hall</a>&#8216;s Ogg Vorbis <a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">Alchemy</a> port, heavily altered by me for purposes of this app,</p></li>
<li><p>Somewhat visualize the playback.</p></li>
</ul>

<p>That&#8217;s pretty much for now, so let&#8217;s continue on the code stuff.</p>

<h3>MumboJumboT code</h3>

<p>You can read everything about the project&#8217;s code on the <a href="http://j.mp/ambilab-mumbojumbot-docs">documentation page</a> of the MumboJumboT project. Please don&#8217;t forget to visit its <a href="http://github.com/vancura/ambilab">GitHub repository</a>.</p>

<p>What you will learn:</p>

<h4>PureMVC and Startup Manager</h4>

<p><a href="http://puremvc.org">PureMVC</a> is a cool <a href="http://en.wikipedia.org/wiki/Model–view–controller">Model-View-Controller</a> framework aimed to help you to create cleaner code in several <a href="http://trac.puremvc.org/PureMVC">languages</a>. And its <a href="http://trac.puremvc.org/Utility_AS3_Loadup">Startup Manager</a> is a good way how to put initialization of your application in a queue, while following each Proxy requirements.</p>

<ul>
<li>Application facade (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/AppFacade_AppFacade.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/AppFacade.as">code</a>)</li>
<li>Application mediator (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_AppMediator.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/AppMediator.as">code</a>)</li>
<li>Loading and queue of proxies (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/controller_LoadResourcesCommand.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/controller/LoadResourcesCommand.as">code</a>)</li>
</ul>

<h4>Config files</h4>

<p>Here you can see my Proxy helping to easily parse config XML settings. The online flavour allows you to merge parsed settings with FlashVars. You can localize the app from the config XML as well, you know, it&#8217;s not a good thing to have any static text in the SWF (it obviously doesn&#8217;t apply to the logging output).</p>

<ul>
<li>Config proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_ConfigProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/ConfigProxy.as">code</a>)</li>
</ul>

<h4>AIR Updates</h4>

<p>Adobe AIR platform allows applications to self-update when there&#8217;s a new version available. See the code below to see how to do that:</p>

<ul>
<li>Checking for updates (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/controller_CheckForUpdateCommand.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/controller/CheckForUpdateCommand.as">code</a>)</li>
</ul>

<h4>Away3D</h4>

<p><a href="http://away3d.com">Away3D</a> is a well known 3D library. And its new <a href="http://away3d.com/away3d-lite-v1-0-fastest-and-smallest-3d-engine-in-flash">Lite</a> flavour finally provides hardware acceleration via Flash 10 <a href="http://video.google.com/videoplay?docid=6731027747102186445#">postcards in space</a> acceleration features.</p>

<ul>
<li>Spinbox (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_components_spinbox_Spinbox.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/SpinboxMediator.as">code</a>)</li>
<li>Spinbox Mediator (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_SpinboxMediator.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/spinbox/Spinbox.as">code</a>)</li>
</ul>

<h4>OGG Decoding</h4>

<p>As I wrote above, thanks to Branden Hall I was able to use Ogg Vorbis files in the app, even it was not possible before.</p>

<ul>
<li>Ogg Vorbis Decoder (<a href="http://github.com/vancura/ambilab/tree/master/MumboJumboT/src/helpers/ogg_decoder">code</a>)</li>
<li>Sample Proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_SampleProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/SampleProxy.as">code</a>)</li>
</ul>

<h4>Advanced mouse controls</h4>

<p>You can see there&#8217;s a somewhat sick mouse handler allowing you to drag-and-rotate so called Spinbox.</p>

<ul>
<li>Mouse Proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_MouseProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/MouseProxy.as">code</a>)</li>
</ul>

<h4>Skinning</h4>

<p>Here you can see how to skin the app with my <a href="http://github.com/vancura/vancura-as3-libs">vancura-as3-libs</a> library. Download the skin folder <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/skin.zip">here</a>.</p>

<ul>
<li>About Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/AboutPanel.as">code</a>)</li>
<li>Load Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/LoadPanel.as">code</a>)</li>
<li>Play Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/PlayPanel.as">coe</a>)</li>
</ul>

<h4>Mocking up</h4>

<p>Just to revisit what was written in <a href="http://vaclav.vancura.org/mumbojumbot-day-1">previous</a> <a href="http://vaclav.vancura.org/mumbojumbot-day-2">articles</a>, here&#8217;s <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/mockups.zip">an archive</a> of PSD files you can download. Just in case you&#8217;d be interested on how the GUI part was done.</p>

<p>You can watch a screencast of the mocking up on <a href="http://vimeo.com/9013867">Vimeo</a>.</p>

<h3>Legal stuff</h3>

<p>Licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0">Attribution-Share Alike (CC) license</a>.
OGG Alchemy Decoder by <a href="http://automatastudios.com">Branden Hall</a> and <a href="http://xiph.org">Xiph.org Foundation</a>. <a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">More info</a>
RaveIN font by <a href="http://jimmac.musichall.cz">Jakub Steiner aka Jimmac</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/mumbojumbot-done/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MumboJumboT</title>
		<link>http://vaclav.vancura.org/mumbojumbot</link>
		<comments>http://vaclav.vancura.org/mumbojumbot#comments</comments>
		<pubDate>Mon, 25 Jan 2010 13:15:13 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2337</guid>
		<description><![CDATA[Since today I'll be working on a small one week project, something like a workshop. I'd be glad to prepare an application for realtime visualization of audio.

I love this kind of projects: you got a limited time - 7 days should be enough to prepare a small application. Game, audio or video stuff, you name it. When you work alone, you could manage your time more precisely, there's no one who tells you what to do and what you should avoid. It's solely your work and you can do whatever you want to - but it has to be done before the deadline, which can't be moved in any circumstances.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Since today I&#8217;ll be working on a small one week project, something like a workshop. I&#8217;d be glad to prepare an application for realtime visualization of audio.</span>
</p>

<p>I love this kind of projects: you got a limited time &#8211; 7 days should be enough to prepare a small application. Game, audio or video stuff, you name it. When you work alone, you could manage your time more precisely, there&#8217;s no one who tells you what to do and what you should avoid. It&#8217;s solely your work and you can do whatever you want to &#8211; but it has to be done before the deadline, which can&#8217;t be moved in any circumstances.</p>

<p>This time I&#8217;ll prepare a small audio application. No business plan, no desires to sell it. No visible sight of making money of it. Just simple fun. This app was on paper for too long and <a href="http://www.viktorbezdek.cz/2009/10/soutez-s-adobe-user-group-czech-o-software-od-adobe-za-2100-pravidla-podminky-a-zadani/">this contest</a> made me start it.</p>

<p>The app will mix samples in a never-ending stream of blabs. Everything will be mixed randomly from predefined settings, adjustable by you. And most importantly you&#8217;ll be able to make your very own generator by recording audio from your computer&#8217;s Line In or Microphone input.</p>

<p>I want to show you some of technologies I developed during last few years. GUI widgets with loadable skins, audio processing (I made few multitrack sequencers and mixers), a slice of 3D rendering. All Model-View-Controller via PureMVC.</p>

<p><span id="more-2337"></span>
I want to use these technologies if you&#8217;re interested to know:</p>

<ul>
<li><a href="http://labs.adobe.com/technologies/air2">Air 2.0 beta</a></li>
<li><a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">Ogg Vorbis / Alchemy</a></li>
<li><a href="http://puremvc.org">PureMVC</a></li>
<li><a href="http://away3d.com/away3d-lite-v1-0-fastest-and-smallest-3d-engine-in-flash">Away3D Lite</a></li>
<li><a href="http://code.google.com/p/popforge">PopForge</a></li>
<li><a href="http://code.google.com/p/bulk-loader/">BulkLoader</a></li>
<li><a href="http://destroytoday.com">DestroyToday&#8217;s</a> <a href="http://github.com/vancura/DestroyFramework/blob/master/src/com/destroytoday/display/Scale9Bitmap.as">Scale9Bitmap</a> (slightly changed by me)</li>
<li><a href="http://tweenmax.com">Greensock TweenMax</a></li>
<li>and a small help of my <a href="http://github.com/vancura/vancura-as3-libs">libraries</a>.</li>
</ul>

<p>If you want to take a few lessons from ActionScript and these areas, this project is a lovely place to start. I did not tell you? Everything I am going to produce here will be licensed as Creative Commons, open for everybody. And that doesn&#8217;t apply only to source codes, I am talking about assets, source PSDs, illustrations, samples etc.</p>

<p>So if you&#8217;re interested in what I am going to come up with in next 6.5 days, enjoy me on the voyage. It will be a rather fast, but very fun trip. Watch this place and Twitter stream at <a href="http://twitter.com/mumbojumbot">@mumbojumbot</a>.</p>

<h3>Update</h3>

<p>MumboJumboT project is done. Read more <a href="http://vaclav.vancura.org/mumbojumbot-done">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/mumbojumbot/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Midsummer</title>
		<link>http://vaclav.vancura.org/midsummer-featured</link>
		<comments>http://vaclav.vancura.org/midsummer-featured#comments</comments>
		<pubDate>Sun, 18 Oct 2009 16:46:05 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1468</guid>
		<description><![CDATA[Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short "animation" done in one night for the project Jsem.cz.]]></description>
			<content:encoded><![CDATA[<p>Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short &#8220;animation&#8221; done in one night for the project Jsem.cz.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/midsummer-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Myousica Multitrack Editor</title>
		<link>http://vaclav.vancura.org/myousica-multitrack-editor</link>
		<comments>http://vaclav.vancura.org/myousica-multitrack-editor#comments</comments>
		<pubDate>Wed, 31 Dec 2008 22:00:14 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adelao]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1856</guid>
		<description><![CDATA[For this project I prepared online multitrack audio editor, video and audio player and other solutions.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">For this project I prepared online multitrack audio editor, video and audio player and a web site ticker.</span>
</p>

<p>Unfortunately the project is not alive anymore. However all these subprojects were pretty complex and made me much better programmer.</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2009/10/myousica-1-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/01/myousica-1-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2009/10/myousica-2-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/10/myousica-2-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/myousica-3-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/10/myousica-3-poster.png" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/myousica-multitrack-editor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound Field</title>
		<link>http://vaclav.vancura.org/sound-field</link>
		<comments>http://vaclav.vancura.org/sound-field#comments</comments>
		<pubDate>Sun, 29 Apr 2007 22:00:27 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[oxygen records]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1327</guid>
		<description><![CDATA[CD cover for a new Oxygen Records release.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">CD cover for a new <a href="http://www.oxygenrecords.com">Oxygen Records</a> release.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/sound-field-full.jpg" rel="zoombox "><img src="http://vaclav.vancura.org/data/2009/10/sound-field-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/sound-field/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Síla skupiny</title>
		<link>http://vaclav.vancura.org/sila-skupiny-2</link>
		<comments>http://vaclav.vancura.org/sila-skupiny-2#comments</comments>
		<pubDate>Wed, 20 Jul 2005 22:00:10 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1692</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/sila-skupiny.swf" rel="zoombox 1200 630"><img src="http://vaclav.vancura.org/data/2009/10/neurobion-skila-skupiny-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/sila-skupiny-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aerobik</title>
		<link>http://vaclav.vancura.org/aerobik</link>
		<comments>http://vaclav.vancura.org/aerobik#comments</comments>
		<pubDate>Mon, 24 Jan 2005 21:14:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=46</guid>
		<description><![CDATA[Má drahá sestřenice provozuje rehabilitační studio. V pátek mne poprosila, bych jí připravil set pro čtvrt hodinu aerobiku.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Má drahá sestřenice provozuje rehabilitační studio. V pátek mne poprosila, bych jí připravil set pro čtvrt hodinu aerobiku.</span>
</p>

<p>Seděli jsme skoro hodinu nad mými zásobami psytrancu a breakbeatu a vybrali pět songů, které mají dostatečně nakopávací kopák (aby se na něj dalo skákat) a dost vysoké výšky (aby tomu kopáku nechaly prostor). Nejhorší byl ovšem požadavek postupného zrychlování ze 135 BPM na konečných 170 (běžný psytrance má 144, brakbeat kolem 135).</p>

<p>Myslím, že na to, že DJ nikdy nebudu (a ani po tom netoužím), se mi podařilo vyrobit skvostnou demenci. Poslechněte <a href="/data/2005/01/aerobitch.mp3" rel="zoombox">sami</a>&#8230; Nesuďte prosím šílenou kombinaci psytrancu s breakem, jde o hudbu pro rozhýbávání padesátnic. Ovšem s tou rychlou částí na konci mám problém i já, takovou rychtu jsem asi vážně nikdy neslyšel (doufám, že za potenciální mdlení rehabilitační klientely nebudu souzen).</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/aerobik/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kúp mi knihu!</title>
		<link>http://vaclav.vancura.org/kup-mi-knihu</link>
		<comments>http://vaclav.vancura.org/kup-mi-knihu#comments</comments>
		<pubDate>Thu, 20 Jan 2005 20:55:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=43</guid>
		<description><![CDATA[Před téměř rokem jsem s Kerrayem remixoval známý song Miro Žbira Kúp mi knihu - tedy popravdě Kerray remixoval a já komandoval :)]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Před téměř rokem jsem s <a href="http://www.kerray.cz">Kerrayem</a> remixoval známý song Miro Žbira Kúp mi knihu &#8211; tedy popravdě Kerray remixoval a já komandoval :)</span>
</p>

<p>
<img src="http://vaclav.vancura.org/data/2005/01/playboy.jpg" class="" />

</p>

<p>Tehdy jsme měli s tímto projektem velké plány, které bohužel naprázdno vyšuměly (což se mi stává poměrně často, hm). Inu zde je náš roztodivný kousek připraven vaší ctěné kritice! Směle <a href="/data/2005/01/Miro_Zbiro_feat_Kerray_And_Xycht_-_Kup_mi_knihu.mp3" rel="zoombox">přehrávejte</a>!</p>

<p>Tímto moc děkuji Kerrayovi za pomoc, myslím, že je to demence, na kterou se nezapomíná a která se pouští vnoučatům :]</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/kup-mi-knihu/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Večernyj Zvon</title>
		<link>http://vaclav.vancura.org/vecernyj-zvon</link>
		<comments>http://vaclav.vancura.org/vecernyj-zvon#comments</comments>
		<pubDate>Thu, 23 Dec 2004 22:00:16 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1673</guid>
		<description><![CDATA[Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/vecernyj-zvon.swf" rel="zoombox 1400 1000"><img src="http://vaclav.vancura.org/data/2004/12/neurobion-vecernyj-zvon-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/vecernyj-zvon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DJ Turtle</title>
		<link>http://vaclav.vancura.org/dj-turtle</link>
		<comments>http://vaclav.vancura.org/dj-turtle#comments</comments>
		<pubDate>Sun, 24 Oct 2004 19:19:34 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1316</guid>
		<description><![CDATA[This picture was created just for fun, for my friend, who's a DJ and calls himself Turtle.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">This picture was created just for fun, for my friend, who&#8217;s a DJ and calls himself Turtle.</span>
</p>

<p>I initially thought it could be used as a part of cover of his new mix, but unfortunately it never happened.</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2009/10/turtle-dj-2.png" class="transparent " /></div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/dj-turtle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boneyard of Heroes</title>
		<link>http://vaclav.vancura.org/the-boneyard-of-heroes</link>
		<comments>http://vaclav.vancura.org/the-boneyard-of-heroes#comments</comments>
		<pubDate>Mon, 29 Dec 2003 22:00:25 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1679</guid>
		<description><![CDATA[A sad animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A sad animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/the-boneyard-of-heroes.swf" rel="zoombox 890 540"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-boneyard-of-heroes-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/the-boneyard-of-heroes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xma$</title>
		<link>http://vaclav.vancura.org/xmas</link>
		<comments>http://vaclav.vancura.org/xmas#comments</comments>
		<pubDate>Tue, 23 Dec 2003 22:00:17 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1356</guid>
		<description><![CDATA[Another Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/xmas.swf" rel="zoombox 741 766"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-xmas-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/xmas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Love Car</title>
		<link>http://vaclav.vancura.org/love-car</link>
		<comments>http://vaclav.vancura.org/love-car#comments</comments>
		<pubDate>Tue, 23 Sep 2003 22:00:19 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1697</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/lufcar.swf" rel="zoombox 800 680"><img src="http://vaclav.vancura.org/data/2003/09/neurobion-lufcar-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/love-car/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>666</title>
		<link>http://vaclav.vancura.org/666</link>
		<comments>http://vaclav.vancura.org/666#comments</comments>
		<pubDate>Mon, 13 Jan 2003 22:00:18 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1708</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/666.swf" rel="zoombox 946 624"><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/666/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snowy Zizkov</title>
		<link>http://vaclav.vancura.org/snowy-zizkov</link>
		<comments>http://vaclav.vancura.org/snowy-zizkov#comments</comments>
		<pubDate>Sun, 29 Dec 2002 22:00:16 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1685</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/snowy-zizkov.swf" rel="zoombox 721 510"><img src="http://vaclav.vancura.org/data/2002/12/neurobion-snowy-zizkov-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/snowy-zizkov/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardworker</title>
		<link>http://vaclav.vancura.org/hardworker</link>
		<comments>http://vaclav.vancura.org/hardworker#comments</comments>
		<pubDate>Sun, 15 Sep 2002 22:00:48 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1383</guid>
		<description><![CDATA[I am happy to be a freelancer! A short animation done in one night for the Jsem.cz project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">I am happy to be a freelancer!</span>
</p>

<p>A short animation done in one night for the <a href="http://vaclav.vancura.org/tag/jsem-cz">Jsem.cz</a> project.</p>

<p>
<a href="http://mirror.vaclav.vancura.org/hardworker" rel="zoombox 598 595"><img src="http://vaclav.vancura.org/data/2002/09/hardworker-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/hardworker/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Midsummer</title>
		<link>http://vaclav.vancura.org/midsummer</link>
		<comments>http://vaclav.vancura.org/midsummer#comments</comments>
		<pubDate>Tue, 25 Jun 2002 22:00:30 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1357</guid>
		<description><![CDATA[Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short "animation" done in one night for the Jsem.cz project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half.</span>
</p>

<p>A short &#8220;animation&#8221; done in one night for the <a href="http://vaclav.vancura.org/tag/jsem-cz">Jsem.cz</a> project.</p>

<p>
<div class="fullsize-image"><a href="http://mirror.vaclav.vancura.org/midsummer" rel="zoombox 576 569" title="Midsummer"><img src="http://vaclav.vancura.org/data/2002/01/jsem-midsummer-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/midsummer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
