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

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: &#8211; audio loop quantized on the fly. is it possible?!</title>
		<atom:link href="http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/feed</link>
		<description></description>
		<pubDate>Thu, 20 Jun 2013 00:02:16 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-53786</guid>
					<title><![CDATA[&#8211; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-53786</link>
					<pubDate>Tue, 07 Dec 2010 12:19:01 +0000</pubDate>
					<dc:creator>gamuso</dc:creator>

					<description>
						<![CDATA[
						<p>hi,</p>
<p>when you quantize a midi clip in ableton live (let´s say 1/8), it will automatically place out of tempo played notes to the nearest specified beat on the grid. ok</p>
<p>why don´t do that with an audio live recording on the fly? it can´t be so difficult&#8230; (well, I would not be able to do it by my self).</p>
<p>so this device should detect the highest peak in each beat to place them &#8220;on time&#8221; in the specified grid to the nearest quantized tempo beat. I suppose that adding a little of time stretching live capability&#8230;</p>
<p>any ideas? has this been done?</p>
<p>thanks a lot.</p>
<p>llllllllllllllllllllllllllllll<br />
<a href="http://www.en.davidfernandez.org" rel="nofollow">http://www.en.davidfernandez.org</a><br />
lllllllllllll<br />
llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193491</guid>
					<title><![CDATA[Re: &#8212; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193491</link>
					<pubDate>Tue, 07 Dec 2010 13:10:00 +0000</pubDate>
					<dc:creator>Tokyo Rose</dc:creator>

					<description>
						<![CDATA[
						<p>difficulty is relative.<br />
midi is much simpler, a single value, audio is a stream of sampled data which must be read in a certain direction at a certain rate. detection would require comprehensive analysis to find an appropriate silent place to cut, in order to include all of the attack portion, plus something that would detect the proper overall and complete envelopes of sounds, and then separately to move the highest portion of the attack according to the quantization grid. then, you also need a windowing scheme to account for interruptions in the signal data along with some way to account for any silence needed to space things out to the grid.</p>
<p>it has been done before in supercollider via the bbcut library by nick collins:</p>
<p><a href="http://www.informatics.sussex.ac.uk/users/nc81/bbcut2.html" rel="nofollow">http://www.informatics.sussex.ac.uk/users/nc81/bbcut2.html</a></p>
<p>check out his other stuff, too:</p>
<p><a href="http://www.informatics.sussex.ac.uk/users/nc81/code.html" rel="nofollow">http://www.informatics.sussex.ac.uk/users/nc81/code.html</a></p>
<p><a href="http://www.informatics.sussex.ac.uk/users/nc81/" rel="nofollow">http://www.informatics.sussex.ac.uk/users/nc81/</a></p>
<p>he refers to it as &#8220;Real Time Onset Detection&#8221;.</p>
<p>if you&#8217;re eager to use something like this in Max, there is a VST developed around parts of the BBCut library called LiveCut:<br />
<a href="http://mdsp.smartelectronix.com/livecut/" rel="nofollow">http://mdsp.smartelectronix.com/livecut/</a><br />
But LiveCut i think simply cuts according to your DAW&#8217;s tempo sync and certain procedures(see description). I don&#8217;t think it does the full onset-detection, but it will sound like it if you play rhythmic to the tempo at which it is synced(your DAW or Max&#8217;s transport tempo).</p>
<p>If you want more than BBCut(in SuperCollider) or the LiveCut VST, it&#8217;s probably something you&#8217;d want to code an external for, perhaps even translate the BBCut source code(classes) into Max external(s).</p>
<p>I&#8217;m not saying that something much simpler couldn&#8217;t be achieved in Max alone, just that Nick there really hit the mark with some extensive research and work.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193492</guid>
					<title><![CDATA[Re: &#8212; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193492</link>
					<pubDate>Tue, 07 Dec 2010 15:30:51 +0000</pubDate>
					<dc:creator>gamuso</dc:creator>

					<description>
						<![CDATA[
						<p>I´m just thinking about a simple maxforlive device.</p>
<p>if you record an audio with a strong and marked rhythm, and a couple of beats are out of tempo, you can easy move the warp markers to make it sound synced.</p>
<p>so what about <strong>a maxforlive device detecting the maximum amplitude parts of a live recording and taking them to the nearest quantized beat automatically. </strong></p>
<p>it sounds simple&#8230; I´m sure it has to be done before.</p>
<p>anyway thanks a lot raja for your so well documented reply,</p>
<p>I´ve tryed livecut, but it is not what I was looking for.</p>
<p>I´m not into supercollider, waw! it took me lots of months get into max/msp&#8230; I´m not skilled with programming, so it scares me to start with another enviroment&#8230;</p>
<p>thanks again for your reply!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193493</guid>
					<title><![CDATA[Re: &#8212; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193493</link>
					<pubDate>Wed, 05 Jan 2011 12:50:56 +0000</pubDate>
					<dc:creator>Venetian</dc:creator>

					<description>
						<![CDATA[
						<p>this is interesting idea </p>
<p>but can you control the warp markers within a max4live device? </p>
<p>I think that&#8217;s the main problem in implementing what you have in mind.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193494</guid>
					<title><![CDATA[Re: &#8212; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193494</link>
					<pubDate>Fri, 07 Jan 2011 10:28:31 +0000</pubDate>
					<dc:creator>gamuso</dc:creator>

					<description>
						<![CDATA[
						<p>well, warp markers or a simple audio stretch (without changing the pitch) in a audio looping device&#8230; it would be meant just for small changes to fit a given rhythm. you are suppose to have some accuracy!</p>
<p>i don´t think this is difficult to accomplish (well, for me it is). it´s just a matter of time.</p>
<p>but the time has come!!</p>
<p>:)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193495</guid>
					<title><![CDATA[Re: &#8212; audio loop quantized on the fly. is it possible?!]]></title>
					<link>http://cycling74.com/forums/topic/audio-loop-quantized-on-the-fly-is-it-possible/#post-193495</link>
					<pubDate>Thu, 30 Jun 2011 12:53:21 +0000</pubDate>
					<dc:creator>umma08</dc:creator>

					<description>
						<![CDATA[
						<p>any development on this?</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

