It appears I figured it out (Jaunty with 0.41.4 extended). Namely, in the s_audio_jack.c on the line 156 it states:<br><br>            if( strcmp( &quot;alsa_pcm&quot;, tmp_client_name ) == 0 &amp;&amp; num_clients &gt; 0 )<br>
            {<br>              char* tmp;<br>                /* alsa_pcm goes in spot 0 */<br>              tmp = jack_client_names[ num_clients ];<br>              jack_client_names[ num_clients ] = jack_client_names[0];<br>
              jack_client_names[0] = tmp;<br>              strcpy( jack_client_names[0], tmp_client_name);<br>            }<br>            else<br>            {<br>                /* put the new client at the end of the client list */<br>
                strcpy( jack_client_names[ num_clients ], tmp_client_name );<br>            }<br>            num_clients++;<br><br>This code snippet apparently puts alsa_pcm in the first spot for jack to connect to. However on Jaunty jackd (v.0.116.1) the default i/o names are &quot;system&quot; rather than &quot;alsa_pcm&quot; (or is this qjackctl&#39;s thing?). Apparently &quot;alsa_pcm&quot; name is used for MIDI connections instead, so the error I get on my machine is:<br>
<br>cannot connect input ports alsa_pcm:Midi-Through/midi_capture_1 -&gt; pure_data_0:input0<br>cannot connect output ports pure_data_0:output0 -&gt; alsa_pcm:Midi-Through/midi_playback_1<br><br>So, it seems to me jack tries to connect to alsa_pcm and fails because those are MIDI devices. Everything starts ok, and jack audio ports are created but there are no autoconnections even if I enter -inchannels and -outchannels flags.<br>
<br>Once I changed line 156 to:<br><br>            if( strcmp( &quot;system&quot;, tmp_client_name ) == 0 &amp;&amp; num_clients &gt; 0 )<br>            //change alsa_pcm to system<br><br>Everything works fine (as it used to) and Pd autoconnects. No midi devices are created however on the MIDI tab of the qjackctl, but obviously if I specify -alsamidi option, then I do get them on the ALSA Midi tab.<br>
<br>So my questions are as follows:<br><br>1) Is renaming of the default jack system i/o from &quot;alsa_pcm&quot; to &quot;system&quot; change in jackd, or is this one of the Jaunty peculiarities?<br>2) what is this MIDI tab vs. ALSA Midi tab on the qjackctl? Is this MIDI synced to jackd? If so, how does one create MIDI ports in Pd inside this domain and what other apps can do this at this point in time?<br>
<br>Any insight in these questions is most appreciated!<br><br>Best wishes,<br><br>Ico<br><br><br><br><div class="gmail_quote">On Thu, May 28, 2009 at 8:19 AM, Ivica Ico Bukvic <span dir="ltr">&lt;<a href="mailto:ico.bukvic@gmail.com">ico.bukvic@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">&gt; Hi, all works well here (0.41.4-ex..rc3 on ubuntu Jaunty),<br>
&gt; you just need to specify the channels properly:<br>
&gt;<br>
&gt; pd -jack (not connect anything)<br>
&gt; pd -jack -channels 2 (work fine and autoconnect all)<br>
&gt; --<br>
&gt; Lazzaro<br>
<br>
</div>Many thanks all for your help! I&#39;ll try suggested solutions and report back<br>
here.<br>
<br>
Best wishes,<br>
<font color="#888888"><br>
Ico<br>
<br>
</font></blockquote></div><br>