<?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>JActionScripters &#187; Takuho Yoshizu</title>
	<atom:link href="http://blog.jactionscripters.com/author/seagirl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jactionscripters.com</link>
	<description>More than 20 Japanese flash coders share the blog/ You will be junkie for this crazy Japanese Flash news</description>
	<lastBuildDate>Sat, 08 Oct 2011 16:55:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Porting a few Max/MSP Objects</title>
		<link>http://blog.jactionscripters.com/2009/05/26/porting-a-few-maxmsp-objects-in-as/</link>
		<comments>http://blog.jactionscripters.com/2009/05/26/porting-a-few-maxmsp-objects-in-as/#comments</comments>
		<pubDate>Tue, 26 May 2009 14:11:13 +0000</pubDate>
		<dc:creator>Takuho Yoshizu</dc:creator>
				<category><![CDATA[Experiment]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=649</guid>
		<description><![CDATA[
I started to port a few Max/MSP Objects such as &#8220;groove~&#8221; &#8220;waveform~&#8221; &#8220;buffer~&#8221; &#8220;dac~&#8221; to ActionScript Classes.
It&#8217;s not been completed yet but here is the first sample.
Random Groove
(you can cut up synchronized two audio files randomly)
These API is something like below.

dac = new DAC();
buffer = new Buffer(2000);  // buffer length(ms)

groove = new Groove(buffer);
groove.loop = true;

waveform [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://seagirl.jp/labs/randomgroove/"><img class="alignnone size-full wp-image-659" title="randomgroove" src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/randomgroove.jpg" alt="randomgroove" width="640" height="396" /></a></p>
<p>I started to port a few Max/MSP Objects such as &#8220;groove~&#8221; &#8220;waveform~&#8221; &#8220;buffer~&#8221; &#8220;dac~&#8221; to ActionScript Classes.</p>
<p>It&#8217;s not been completed yet but here is the first sample.</p>
<p><a href="http://seagirl.jp/labs/randomgroove/">Random Groove</a><br />
(you can cut up synchronized two audio files randomly)</p>
<p>These API is something like below.<br />
<code-style>
<pre name="code" class="as3">dac = new DAC();
buffer = new Buffer(2000);  // buffer length(ms)

groove = new Groove(buffer);
groove.loop = true;

waveform = new Waveform(buffer);
addChild(waveform);
waveform.addEventListener(Event.CHANGE, waveformChangeHandler);

private function waveformChangeHandler(event:Event):void
{
    begin.text = String(int(waveform.range.x));
    end.text = String(int(waveform.range.y));

    groove.range(waveform.range);
    dac.play(groove.data);
}</pre>
<p></code-style></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/26/porting-a-few-maxmsp-objects-in-as/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello, JActionScripters!</title>
		<link>http://blog.jactionscripters.com/2009/05/15/hello-jactionscripters/</link>
		<comments>http://blog.jactionscripters.com/2009/05/15/hello-jactionscripters/#comments</comments>
		<pubDate>Fri, 15 May 2009 14:32:15 +0000</pubDate>
		<dc:creator>Takuho Yoshizu</dc:creator>
				<category><![CDATA[Hello]]></category>

		<guid isPermaLink="false">http://jactionscripter.heteml.jp/jactionscripters/blog/?p=42</guid>
		<description><![CDATA[Hello, I&#8217;ve just joined on JActionScripters. Very nice to meet you!! I&#8217;m Takuho Yoshizu. I have been developing applications for over 3 years in ActionScript, Flex, Objective-C, JavaScript, C++, Perl, PHP, and Java at IMG SRC / S2 Factory.
Genius Framework
it is a framework for Flex Application something like PureMVC on Spark project.
Ambient Music Generator
 It [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, I&#8217;ve just joined on JActionScripters. Very nice to meet you!! I&#8217;m Takuho Yoshizu. I have been developing applications for over 3 years in ActionScript, Flex, Objective-C, JavaScript, C++, Perl, PHP, and Java at <a href="http://www.imgsrc.co.jp/">IMG SRC</a> / <a href="http://www.s2factory.co.jp/">S2 Factory</a>.</p>
<p><strong>Genius Framework</strong><br />
it is a framework for Flex Application something like PureMVC on Spark project.</p>
<p><strong>Ambient Music Generator</strong><br />
 It is a application to generate Ambient Music dynamically.<br />
<a href="http://seagirl.jp/iphone/amg">For iPhone</a><br />
<a href="hrrp://seagirl.jp/ambient/ambient.air">For Desktop (AIR)</a></p>
<p>And please check <a href="http://www.myspace.com/number0number0">the sound</a> if you like rock/electronica/ambient music. I&#8217;m in the band.</p>
<p>Twitter: <a href="http://twitter.com/seagirl">seagirl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/15/hello-jactionscripters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

