<?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: Logic Pro and Pluggo</title>
		<atom:link href="http://cycling74.com/forums/topic/logic-pro-and-pluggo/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 17:32:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-25697</guid>
					<title><![CDATA[Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-25697</link>
					<pubDate>Fri, 28 Apr 2006 13:58:12 +0000</pubDate>
					<dc:creator>jbm</dc:creator>

					<description>
						<![CDATA[
						<p>This is probably a question for the C74 folks&#8230;</p>
<p>I have a plug-in instrument (pluggo) that I&#8217;ve written which runs on a 1000 ms delay &#8212; it produces audio 1 second after midi, in order to glean some valuable information about note length and other musical stuff, and to buffer samples accordingly.</p>
<p>What I&#8217;m wondering about is what exactly Logic does in order to stop audio from my pluggo _immediately_ when I stop the transport, when audio should actually continue for 1000 ms after hitting stop? What it suggests is that Logic is actually killing dsp to my plug, which may, in turn, be causing some of my problems. What I need to know is whether there&#8217;s some way for my pluggo to detect this &#8220;stop&#8221; message, given that plugsync~ doesn&#8217;t recognize transport messages from Logic. Is there any other logical test I can do? Any sort of interruption in dsp I can somehow detect? Anything?</p>
<p>
J.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75939</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75939</link>
					<pubDate>Fri, 28 Apr 2006 15:34:02 +0000</pubDate>
					<dc:creator>Roman Thilenius</dc:creator>

					<description>
						<![CDATA[
						<p>dont mess with logics logic, you will loose. :)</p>
<p>the plug-in output is stopped for example because <br />
of the disk buffer refresh which happens on every <br />
stop.<br />
i am not sure about logic, but in PT and steinberg <br />
a &#8220;transport stop&#8221; is always a &#8220;locator set&#8221;.<br />
if it wouldnt be, you would have to wait longer <br />
when you press start in a project.</p>
<p>since you plug instruments in logic into regular <br />
channel strips which also could point to a disk <br />
track, it is even for instruments.</p>
<p>just play the stuff you need for 1000 ms longer.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75940</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75940</link>
					<pubDate>Fri, 28 Apr 2006 15:44:32 +0000</pubDate>
					<dc:creator>jbm</dc:creator>

					<description>
						<![CDATA[
						<p>
> just play the stuff you need for 1000 ms longer.<br />
> </p>
<p>I hear you&#8230; Bummer, though. It&#8217;s really awkward to<br />
work when you can&#8217;t stop in the middle of something.</p>
<p>I&#8217;m messing around with trying to build a reset based<br />
on the ticks (float), which shows up properly in plugsync~. <br />
I&#8217;ll see how that goes. The ugly thing is that, with the<br />
continual stopping, for some reason, my plugin behaves more <br />
and more poorly, until it eventually freezes Logic! Ouch.</p>
<p>J.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75941</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75941</link>
					<pubDate>Fri, 28 Apr 2006 16:22:01 +0000</pubDate>
					<dc:creator>jbm</dc:creator>

					<description>
						<![CDATA[
						<p>Actually, here&#8217;s another thing. I&#8217;m finding that, every so often, different instances of the plug get very slightly &#8220;off&#8221; one another, timing-wise. It&#8217;s not serious, but it seems strange to me. Do you, or doee anybody, know how pluggo deals with multiple instances of plugins, particularly when those plugins contain a good chunk of java code?</p>
<p>J.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75942</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75942</link>
					<pubDate>Sat, 29 Apr 2006 14:21:41 +0000</pubDate>
					<dc:creator>Roman Thilenius</dc:creator>

					<description>
						<![CDATA[
						<p>i suppose the easy answer to this question is that<br />
_of course_ everything what is not signals, can run<br />
&#8220;out of sync&#8221; after a while, especially when<br />
looping in the host, pressing start and stop, or<br />
under high processor load.</p>
<p>your only chance to avoid this is using signals only<br />
for everything time.</p>
<p>well, or, where applicable, retrigger message stuff <br />
by something signal so that you reach &#8220;sync&#8221; at least<br />
ever 4 bars or whatever you need &#8230; </p>
<p>
recently i discovered another simple method of<br />
almost-timing-predictable systems for pluggo. :)<br />
i am using a premade &#8211; in cubase &#8211; vst parameter <br />
data track which contains sync signals, similar <br />
like SMPTE works for audio.</p>
<p>routed or copied to a certain pp number in your <br />
plug-in it can give precise timed messages and <br />
that allows me to have a non-shifting metro <br />
replacement based on [pp 199 foo 0 1] and <br />
[select 0 1] which is far more accurate than even<br />
midi from host (if the host is logic or a non-<br />
sequencer) when you for example want to produce <br />
1/128th note timed messages inside the plug-in.</p>
<p>the message data might still be delayed on their <br />
way _in the plug-in, but at least they are _triggered <br />
at the right moment &#8230;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75943</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75943</link>
					<pubDate>Thu, 12 Oct 2006 17:03:46 +0000</pubDate>
					<dc:creator>Mattijs</dc:creator>

					<description>
						<![CDATA[
						<p>Hi to all pluggo builders,</p>
<p>I&#8217;d like to raise this topic again, especially the issue of retrieving the transport state of logic. plugsync~ doesn&#8217;t work for this and after trying all hacks and tricks I could think of (going after ticks/sample count + adding my own metro to detect change every x ms), I still don&#8217;t have a satisfying start/stop in my pluggo.</p>
<p>Is there anyone who found a good way to retrieve the transport state of Logic in a pluggo?</p>
<p>Thanks in advance,<br />
Mattijs</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75944</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75944</link>
					<pubDate>Fri, 13 Oct 2006 12:37:57 +0000</pubDate>
					<dc:creator>Mitch Turner</dc:creator>

					<description>
						<![CDATA[
						<p>Mattijs,<br />
The transport state in Logic can be detected in Max/MSP by using the [rtin] object.</p>
<p>In Logic, go to File>Song Settings>Synchronization and click the &#8220;MIDI&#8221; tab.  Check the &#8220;Destination 1&#8243; box and select &#8220;to Max/MSP 1&#8243; in the drop down menu.</p>
<p>In Max/MSP, create an [rtin] object and connect a number box to its output</p>
<p>[rtin]<br />
|<br />
|<br />
[numberbox]</p>
<p>Double click the [rtin] object and select &#8220;to Max/MSP 1&#8243;.  </p>
<p>Now start and stop the Logic transport, and the Max/MSP number box should report the state of Logic&#8217;s transport, <br />
where 248=play, 252=stop, etc&#8230;</p>
<p>Hope this is helpful to you,<br />
Mitch</p>
<p>mmturner (at) mindspring (dot) com</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75945</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75945</link>
					<pubDate>Fri, 13 Oct 2006 13:03:08 +0000</pubDate>
					<dc:creator>jbm</dc:creator>

					<description>
						<![CDATA[
						<p>I was in on this whole issue a while ago, running up against the apparent impossibility of getting Logic to accurately report transport info. The problem is not with basic start/stop, but with song position, or really with getting a useful sync out of plugsync~ (or hostsync~ in rewire mode). I was trying to access an absolute time in the Logic song for my plug-in. It was basically hopeless. You could get it approximated, but not accurately reported (it would drift on consecutive playbacks).</p>
<p>I would be very much interested to know whether this has improved&#8230; As I recall, most sequencers had the same error, only Logic was particularly bad! ;-)</p>
<p>J.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75946</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75946</link>
					<pubDate>Fri, 13 Oct 2006 16:23:26 +0000</pubDate>
					<dc:creator>Mattijs</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Mitch, I didn&#8217;t think of that approach yet! Thanks! </p>
<p>Of course this way I still don&#8217;t have the info in the pluggo itsself, but perhaps there is some way to send it back to logic and put into a pluggo via some clever environment mapping..</p>
<p>Jb: I don&#8217;t need sync info in my pluggo but I can&#8217;t image the sample count to be inaccurate. Didn&#8217;t try though. Of course it is not a signal so you shouldn&#8217;t use that output to drive a wave~.</p>
<p>Cheers,<br />
Mattijs</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75947</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75947</link>
					<pubDate>Fri, 13 Oct 2006 17:04:51 +0000</pubDate>
					<dc:creator>Andrew Pask</dc:creator>

					<description>
						<![CDATA[
						<p>
The problems stem from the fact that Logic switches off all processing on audio tracks when the transport stops. Audio, scheduler, the lot.</p>
<p>Aux busses, however, stay switched on. This may offer you a chance, but I have not really explored it yet.</p>
<p>This problem, which seems to be now &#8220;spreading&#8221; to other hosts, DP for instance, is being closely considered as part of ongoing Pluggo development.</p>
<p>-A</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75948</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75948</link>
					<pubDate>Fri, 13 Oct 2006 17:13:34 +0000</pubDate>
					<dc:creator>Andrew Pask</dc:creator>

					<description>
						<![CDATA[
						<p>
As it turns out, you *can* get transport information in Logic if the plug is in an Aux bus.</p>
<p>Not sure if it helps anything though&#8230;.</p>
<p>:)</p>
<p>-A</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75949</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75949</link>
					<pubDate>Fri, 13 Oct 2006 18:43:34 +0000</pubDate>
					<dc:creator>Gregory Taylor</dc:creator>

					<description>
						<![CDATA[
						<p>
>The problems stem from the fact that Logic switches off all<br />
>processing on audio tracks when the transport stops. Audio,<br />
>scheduler, the lot.</p>
<p>The apparent &#8220;ease&#8221; of saving a Max patch as<br />
a plug-in [and I realize that the word ease<br />
is relative], from time to time, may mask the<br />
fact that you *still* need to know not only<br />
something about how Max itself runs, but about<br />
the way that whatever application you want to<br />
run your plug-in *with* functions &#8211; and this<br />
may include the VST and AU plug-in specs themselves.</p>
<p>That would be patently and intuitively obvious<br />
in a situation where one writes raw code, I<br />
suppose. But it still matters here. If the VST<br />
or AU spec specifies something, then that&#8217;s a<br />
limitation for you [and for us, as well, since<br />
we also write plug-ins]. And the same is true <br />
for host applications.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75950</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75950</link>
					<pubDate>Fri, 13 Oct 2006 19:30:40 +0000</pubDate>
					<dc:creator>jbm</dc:creator>

					<description>
						<![CDATA[
						<p>Quote: Gregory Taylor wrote on Fri, 13 October 2006 19:43<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
> <br />
> >The problems stem from the fact that Logic switches off all<br />
> >processing on audio tracks when the transport stops. Audio,<br />
> >scheduler, the lot.<br />
> <br />
> The apparent &#8220;ease&#8221; of saving a Max patch as<br />
> a plug-in [and I realize that the word ease<br />
> is relative], from time to time, may mask the<br />
> fact that you *still* need to know not only<br />
> something about how Max itself runs, but about<br />
> the way that whatever application you want to<br />
> run your plug-in *with* functions &#8211; and this<br />
> may include the VST and AU plug-in specs themselves.<br />
> <br />
> That would be patently and intuitively obvious<br />
> in a situation where one writes raw code, I<br />
> suppose. But it still matters here. If the VST<br />
> or AU spec specifies something, then that&#8217;s a<br />
> limitation for you [and for us, as well, since<br />
> we also write plug-ins]. And the same is true <br />
> for host applications.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>uh&#8230; the documented functionality of the plugsync~ and hostsync~ objects is entirely clear. It just doesn&#8217;t quite work. I&#8217;m going to give the aux bus idea a try someday, but it&#8217;s not a priority right now. The explanation Andrew gave is perfectly reasonable, but this problem has been seen on Logic, Cubase, Live, and DP, to varying degrees of severity (Logic being the highest!). It sounds like they&#8217;re basically doing what &#8220;mute&#8221; does for the poly~ object; in this case, shutting off audio to avoid a perpetually spiked cpu! </p>
<p>Fair enough&#8230; I&#8217;m not bitching because I think this is c74&#8242;s fault, btw. I&#8217;m just bitching. A fix would be lovely, one day.</p>
<p>J.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75951</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75951</link>
					<pubDate>Sat, 14 Oct 2006 11:06:08 +0000</pubDate>
					<dc:creator>Mattijs</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Gregory,</p>
<p>You are right of course, this problem has nothing to do with pluggo. If the host doesn&#8217;t provide this information correctly there is no way for pluggo to send it to the user. So I blame Logic, or the AU standard, but not pluggo. Sill I was wondering whether someone found a workaround for this. </p>
<p>I got two replies that will work in my case: 1) the midiclock (as Mitch pointed out) and 2) the aux idea (Andrew&#8217;s finding). I really love this forum.. It works!</p>
<p>> The apparent &#8220;ease&#8221; of saving a Max patch as<br />
a plug-in [and I realize that the word ease<br />
is relative], from time to time, may mask the<br />
fact that you *still* need to know not only<br />
something about how Max itself runs, but about<br />
the way that whatever application you want to<br />
run your plug-in *with* functions &#8211; and this<br />
may include the VST and AU plug-in specs themselves.</p>
<p>> That would be patently and intuitively obvious<br />
in a situation where one writes raw code, I<br />
suppose. </p>
<p>This is an interesting thing to have stated. There are several occurencies on this forum of people that have been tricked by the relative ease of max in general into believing that the underlying principles are also simple to understand without a technical background. Understanding the underlying principles gets more pressing as the ideas one tries to realize get more elaborate.</p>
<p>I can&#8217;t help believing that there is an accidental possibility to on one hand make people better realize this fact and on the other hand not losing a lot of artists as customers.</p>
<p>Ad Jb: so I believe there is nothing c74 can do about this. Except for providing a forum where users can work out workarounds together :)</p>
<p>Cheers,<br />
Mattijs</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75952</guid>
					<title><![CDATA[Re: Logic Pro and Pluggo]]></title>
					<link>http://cycling74.com/forums/topic/logic-pro-and-pluggo/#post-75952</link>
					<pubDate>Sat, 14 Oct 2006 13:18:52 +0000</pubDate>
					<dc:creator>Pierre Alexandre Tremblay</dc:creator>

					<description>
						<![CDATA[
						<p>Dear all.</p>
<p>My 2 cent on this:</p>
<p>> This is an interesting thing to have stated. There are several  <br />
> occurencies on this forum of people that have been tricked by the  <br />
> relative ease of max in general into believing that the underlying  <br />
> principles are also simple to understand without a technical  <br />
> background. Understanding the underlying principles gets more  <br />
> pressing as the ideas one tries to realize get more elaborate.<br />
><br />
> I can&#8217;t help believing that there is an accidental possibility to  <br />
> on one hand make people better realize this fact and on the other  <br />
> hand not losing a lot of artists as customers.</p>
<p>What I like about Max and the Moore&#8217;s law is the fact that some  <br />
people with very basic programming skills will intuitively hack  <br />
something that is outside the box of a trained coder.  The machines  <br />
are powerful enough not to cope with it, and there is some  <br />
interesting aesthetic findings out of that way of thinking&#8230;</p>
<p>I just think of some of my students with glitchy, dirty code that  <br />
sounds great&#8230; and then, I can help them to be a tad more elegant in  <br />
their coding, to consider efficient cpu cycle use and to admire  <br />
Andrew Benson receipies.</p>
<p>I presume it is an inheritage of my composition tutors, where I was  <br />
long ago sent to compose with a pencil, an eraser and a white  <br />
sheet&#8230; and no technique at all!  And then my teachers were kind  <br />
enough to take the small good part of it and send me to the library  <br />
to listen to masterpieces without killing the fragile individual  <br />
voice being put to life in my early pieces. I prefer that apporach to  <br />
the Writing technique one.</p>
<p>Anyway, all that to say that it is quite easy with Pluggo and  <br />
Soundflower to put together dodgy setups with great sound results,  <br />
and I really think the Max community should continue to support the  <br />
hackers!</p>
<p>my 2 pennies</p>
<p>pa</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

