Aquileo | Recent changes to feature-requestshttps://sourceforge.net/p/qmidiarp/feature-requests/Recent changes to feature-requestsenThu, 16 Feb 2023 14:27:53 -0000Aquileo | #23 QQMidiArp LFO: Any chance of creating very long cycles?https://sourceforge.net/p/qmidiarp/feature-requests/23/?limit=25#dc5c<div class="markdown_content"><p>That's OK I completely understand.</p>
<p>Unfortunately linear sequencing doesn't work for me because I'm creating generative elements within Carla (using LMMS as a host of sorts) hence wanting something that can manage MIDI settings very slowly. I, too, am working in loops and patterns, but with elements changing at slow rates. I'm already running at extremely slow tempos.</p>
<p>I knew that my request was somewhat off-the-wall, but I thought I'd ask in case it was something easy. The QMidiArp LFO is the best of its kind I've come across and it's so easy for me to visually create cycles.</p></div>David RichardsonThu, 16 Feb 2023 14:27:53 -0000https://sourceforge.net30251e9184b13b151d7e9e10f70b4be81b4f41aeAquileo | #23 QQMidiArp LFO: Any chance of creating very long cycles?https://sourceforge.net/p/qmidiarp/feature-requests/23/?limit=25#6f55<div class="markdown_content"><p>Hi, <br/>
Sorry, I'm discovering your request only now due to a failed notification. Handling such long cycles is indeed beyond the initial idea (which is around loops and patterns), and it would be unpractical to handle with the current implementation (data storage, drawing, internal memory handling, etc....). If you don't need a high time resolution, setting the tempo to something very low may go in that sense. <br/>
But why don't you use a linear sequencer such as qtractor. That would do a good job there, no?</p>
<p>Best<br/>
Frank</p></div>FrankThu, 16 Feb 2023 07:47:50 -0000https://sourceforge.net75cee1179da61bb5649083da917ae51d9db75562Aquileo | QQMidiArp LFO: Any chance of creating very long cycles?https://sourceforge.net/p/qmidiarp/feature-requests/23/<div class="markdown_content"><p>Hi,</p>
<p>I'm using QMidiArp LFO to control parameters in instruments. It seems to be the only LFO in current production that doesn't reset itself at the start of a loop. I'd really like to be able to create cycles that are tens of minutes - and even hours - long.</p>
<p>I realise this wouldn't be a common requirement, but might it be possible?</p></div>David RichardsonTue, 10 Jan 2023 18:58:22 -0000https://sourceforge.net548a3c3752c89d8e4df04765f729849653822649Aquileo | #22 qmidiarp open sound control mappinghttps://sourceforge.net/p/qmidiarp/feature-requests/22/?limit=25#d3d8<div class="markdown_content"><p>OK Patrick, <br/>
great if this works for you. </p>
<p>Best<br/>
Frank</p></div>FrankSun, 07 Feb 2021 08:58:09 -0000https://sourceforge.net6e2fad1ad2c45bf70d7aff0d4b24ee28bf5b3889Aquileo | #22 qmidiarp open sound control mappinghttps://sourceforge.net/p/qmidiarp/feature-requests/22/?limit=25#4d10<div class="markdown_content"><p>Thank you very much, I "hacked" something just to make it works for me. It's not beautiful, but I can create pattern in pd -> osc -> qmidiarp (among other things).</p>
<div class="codehilite"><pre><span></span><span class="o">//</span><span class="nv">liblo</span>
#<span class="k">include</span> <span class="o"><</span><span class="nv">lo</span><span class="o">/</span><span class="nv">lo</span>.<span class="nv">h</span><span class="o">></span>
#<span class="k">include</span> <span class="o"><</span><span class="nv">lo</span><span class="o">/</span><span class="nv">lo_cpp</span>.<span class="nv">h</span><span class="o">></span>
#<span class="k">include</span> <span class="o"><</span><span class="nv">iostream</span><span class="o">></span>
#<span class="k">include</span> <span class="o"><</span><span class="nv">atomic</span><span class="o">></span>
<span class="o">//</span> <span class="nv">global</span> <span class="nv">liblo</span> <span class="nv">thread</span>
<span class="nv">lo</span>::<span class="nv">ServerThread</span> <span class="nv">st</span><span class="ss">(</span><span class="mi">9000</span><span class="ss">)</span><span class="c1">;</span>
<span class="nv">MainWindow</span>::<span class="nv">MainWindow</span><span class="ss">(</span><span class="nv">int</span> <span class="nv">p_portCount</span>, <span class="nv">bool</span> <span class="nv">p_alsamidi</span>, <span class="nv">char</span> <span class="o">*</span><span class="nv">execName</span><span class="ss">)</span>
{
...
<span class="nv">st</span>.<span class="nv">add_method</span><span class="ss">(</span><span class="s2">"</span><span class="s">/updatepattern</span><span class="s2">"</span>, <span class="s2">"</span><span class="s">s</span><span class="s2">"</span>,
[<span class="nv">this</span>]<span class="ss">(</span><span class="nv">lo_arg</span> <span class="o">**</span><span class="nv">argv</span>, <span class="nv">int</span> <span class="nv">nb</span><span class="ss">)</span>
{
<span class="nv">engine</span><span class="o">-></span><span class="nv">midiArp</span><span class="ss">(</span><span class="mi">0</span><span class="ss">)</span><span class="o">-></span><span class="nv">updatePattern</span><span class="ss">(</span><span class="o">&</span><span class="nv">argv</span>[<span class="mi">0</span>]<span class="o">-></span><span class="nv">s</span><span class="ss">)</span><span class="c1">;</span>
}<span class="ss">)</span><span class="c1">;</span>
<span class="o">//</span> <span class="nv">start</span> <span class="nv">liblo</span> <span class="nv">thread</span>
<span class="nv">st</span>.<span class="nv">start</span><span class="ss">()</span><span class="c1">;</span>
</pre></div>
</div>PatrickSat, 06 Feb 2021 20:45:58 -0000https://sourceforge.net93ef47c1f166b8305e6b7723ca8e7005f631e2aeAquileo | #22 qmidiarp open sound control mappinghttps://sourceforge.net/p/qmidiarp/feature-requests/22/?limit=25#daeb<div class="markdown_content"><ul>
<li><strong>status</strong>: open --> pending</li>
<li><strong>assigned_to</strong>: Frank</li>
</ul></div>FrankSat, 06 Feb 2021 09:01:37 -0000https://sourceforge.net486677f5e541dddf0699179075404298abcf7376Aquileo | qmidiarp open sound control mappinghttps://sourceforge.net/p/qmidiarp/feature-requests/22/<div class="markdown_content"><p>Hi, I would like to control qmidiarp via OSC. There is already liblo for nsm, but is it possible to control bpm, maybe switching pattern, muting, etc? In short instead of mapping midi.</p>
<p>Thanks</p></div>PatrickSat, 23 Jan 2021 01:26:45 -0000https://sourceforge.net8cbb62ed6c9c4cfbf4c5a5aa3995c9f32065caafAquileo | qmidiarp open sound control mappinghttps://sourceforge.net/p/qmidiarp/feature-requests/22/<div class="markdown_content"><p>Ticket 22 has been modified: qmidiarp open sound control mapping<br/>
Edited By: Frank (emuse)<br/>
Status updated: u'open' => u'pending'<br/>
Owner updated: None => u'emuse'</p></div>PatrickSat, 23 Jan 2021 01:26:45 -0000https://sourceforge.netc9a57824d57c35a05e0dbe1e08edc0138e103444Aquileo | #19 Make it possible to set random number and a range for those random numbers.https://sourceforge.net/p/qmidiarp/feature-requests/19/?limit=25#d23f<div class="markdown_content"><ul>
<li><strong>assigned_to</strong>: Frank</li>
</ul></div>FrankSun, 13 Dec 2020 21:17:59 -0000https://sourceforge.net487dd622d7b062a2b3600c067c3ed3a474b2a0abAquileo | #20 Make it possible to select certain musicial scalehttps://sourceforge.net/p/qmidiarp/feature-requests/20/?limit=25#71cb<div class="markdown_content"><ul>
<li><strong>assigned_to</strong>: Frank</li>
</ul></div>FrankSun, 13 Dec 2020 21:12:31 -0000https://sourceforge.neta1d742604b41e5de95f4dabf910cced5046f53a0