Forum Replies Created

Viewing 15 posts - 46 through 60 (of 430 total)
  • Author
    Posts
  • in reply to: granulostrech #3641

    Bonjour Olivier,
    Je ne sais pas trop, je crois que rien n’a été fait en ce sens.
    Je vais regarder si je peux ajouter, ça sera probablement un ajout pour un fonctionnement dans Logelloop 5, ça n’arrivera donc pas en urgence…
    Philippe

    in reply to: new user macro help #3638

    “Now a new macro question. I made macro to record the next loop with one click. Then I realized I could use multiple and it would record if the next loop is empty, which is the main thing I wanted to do But I also want to go to the next loop and start multiply on a new track right away. But it does not, it waits until the loop plays once then starts the multiple. This is the macro:
    //**** macro begin ****
    NextLoop
    WaitNextLoop
    Multiply
    //**** macro end ****
    It does the same thing with or without the WaitNextLoop, so how can I get it to multiply when the next loop starts?”

    —> Sound in A
    —> Sound in B

    If A is playing.

    //**** macro begin ****
    NextLoop
    Multiply
    //**** macro end ****

    —> Multiplication on B and the end of Loop A.

    If you want an immediate Multiplication on B. Put Two NextLoop as if 2 click on the footboard for immediate NextLoop.

    //**** macro begin ****
    NextLoop
    NextLoop
    Multiply
    //**** macro end ****

    Is it what you need?

    Please next time : one question in one thread and a new thread for a new question on a different topic. Thanks in advance.
    Philippe

    in reply to: new user macro help #3637

    “related to this as well, it would be more useful if the last track recorded or overdubbed is the selected track. It seems like it is just track 1 unless you change it.”

    —> This is not possible and will not in the near future… Sorry.

    in reply to: new user macro help #3636

    “But this takes me to the next related question. The Midi volume is master, all tracks or a specific track. How can i use a volume peddle on just the selected track?”

    1 – Connect the midi volume pedal to Midi/Variables for macro $midiv_cc1$
    2 – make this macro :

    //**************** Volume to Selected Track ***************
    DoRepeat
    TrackVolume trk_sel = {scale($midiv_cc1$, 0, 127, -76, 0)}
    Sleep 50
    While true
    //**************** End ***************

    3 – Launch the macro, change the value of $midiv_cc1$ with the pedal.
    Philippe

    in reply to: new user macro help #3635

    Hi ,
    “This was helpful, but after some reflection, muting is only one thing I want to do when selecting a track, so what I really need is a increment or decrement selected track macro. Then I can mute or do a Volume on a track or anything really.”

    I am not sure I understand the question, but if yes, make those two macros :

    //**************** SelectNextTrack ***************
    VarLoopTrack trk_x {$current_selected_track$ + 1}
    SelectTrack @ trk_x
    //**************** SelectNextTrack End ***************

    //**************** SelectPreviousTrack ***************
    VarLoopTrack trk_x {$current_selected_track$ – 1}
    SelectTrack @ trk_x
    //**************** SelectPreviousTrack End ***************

    Put each one in a slot.
    Set a midi note of your footboard to launch each macro.
    Philippe

    in reply to: Default Scene Settings #3634

    Hi Ploughman,
    You can’t overwrite the default settings.

    But you can make a preset called, for example, “My default preset”
    Then you can write a macro to load like this one :

    //********************* macro begin ****************
    LoopA
    PresetRecall “My default preset” WaitUntilLoaded
    Sleep 200

    LoopB
    PresetRecall “My default preset” WaitUntilLoaded
    Sleep 200

    LoopC
    PresetRecall “My default preset” WaitUntilLoaded
    Sleep 200

    LoopA
    MessageMain “Logelloop is ready!”

    //********************* macro end ****************

    Put the macro in a slot.
    Launch the macro.
    Your default preset is now loaded in the three loops.

    Hope this help.
    Philippe

    in reply to: Issues with monitor level #3633

    Hi Ploughman,
    This is a weird issue. I add it to the list and will look at it as soon as possible.
    If this issue needs a fix, it will be in Logelloop 5
    Thanks for the report,
    Philippe

    in reply to: granulostrech #3632

    Salut Ingrid,
    Granulostrech n’est pas un effet générique de Logelloop. Plusieurs versions ont circulées sous le manteau et je ne sais pas laquelle tu utilises. Mais ce que je peux dire, c’est qu’il faut enregistrer une boucle dans un baby looper et cette boucle appariera dans la liste qui se cache dans le menu “Buffers list”. Dès lors que tu la choisis, la boucle est disponible dans Granulostretch… Pas vraiment intuitif, mais Granulostretch n’est pas vraiment officiel… Peut-être un jour…
    Philippe

    in reply to: Effects on main output channel? #3627

    Hi Ploughman,
    That’s a good question! This is on our to do list. Don’t expect it for the first Logelloop 5 release, but probably a bit later…
    Philippe

    in reply to: Macro commande Undeclare #3625

    Salut,
    Undeclare est corrigé dans Logelloop 5.

    Tu peux utiliser un redeclare avant un declare.
    Mais, note que dans Logelloop 5 on a dû changer le mode de déclaration des variables et qu’il faudra les déclarer dans chaque macro qui les utilisera.

    Donc, personnellement, je mettrai un redeclare en début de macro qui a besoin de la variable plutôt que dans un init…
    Philippe

    in reply to: Input controls #3615

    Hi Ploughman,
    To route audio input to audio output, you can use the monitoring system.
    I think this is explained in the manual.

    To set up the monitoring : set the output for Monitoring in the audio output panel, in the Input Window, move up the monitor fader (most left fader in the Input Window), then, you will hear the audio input in your output (but with some latency, regarding your audio settings).

    To use a VST instrument in an input : create a stereo input in the input settings panel. add one insert slot in this input (in insert preferences panel), then, in Logelloop, load a VST in the input. In the VST insert, load your instrument. Then, you can route a midi device to this insert (midi preference panel).

    Hope, that will help,
    Thanks,
    Philippe

    in reply to: Macro commande Undeclare #3614

    Salut Christophe,
    Je confirme le pb de compilation de Undeclare.
    Nous allons corriger cela dans Logelloop 5.

    Personnellement, j’utiliserai plutôt ReDeclare dans ce cas là, car dans tous les cas, tu auras besoin d’avoir des variables déclarées avant de commencer le concert non?

    Undeclare me semble vraiment utile pour du débogage de macros.
    Philippe

    in reply to: new user macro help #3609

    Hi Ploughman,
    After some more work on this case, I can also say that you can do it with only one macro and the track selection system. And the macro will only need one line :

    TrackMute trk_sel {(valueOfReactionNamed(“TrackMute_trk” + $current_selected_track$) == 0) ? 1 : 0 }

    This track takes the current state of the selected track and reverse to the other value… If the track mute state is 1 (muted), it put it at 0 (unmuted), and so on…

    OK, that’s not direct, you first need to select the track and then push the macro button.
    —> It’s possible to select a track with a Midi command…

    Philippe

    in reply to: new user macro help #3606

    Hi Ploughman,
    We will add some more macro examples of Logelloop 5.

    The issue in your macro is that the track is selected only when you first launch the macro.
    There is no track selection after the WaitUserAction, that’s the issue.

    Your macro should contain :

    WaitUserAction
    SelectTrack @ trk1
    TrackMute trk_sel OFF

    Your Macro could also be like this :

    //***************** Begin ************
    //***************** Mute or unMute the selected track ************
    DeclareOnce int $trk1_muted$ = 0

    SelectTrack @ trk1

    If {$trk1_muted$ == 0}
    TrackMute trk_sel ON
    Set $trk1_muted$ = 1
    MacroStop
    EndIf

    If {$trk1_muted$ == 1}
    TrackMute trk_sel OFF
    Set $trk1_muted$ = 0
    MacroStop
    EndIf
    //***************** End ************

    Or even, with the possibility to know the current state of the mute button :

    //***************** Begin ************
    //***************** Mute or unMute the selected track ************
    SelectTrack @ trk1

    If {valueOfReactionNamed(“TrackMute_trk1”) == 0}
    TrackMute trk_sel ON
    Else
    TrackMute trk_sel OFF
    EndIf
    //***************** End ************

    There is an example of the use of valueOfReactionNamed in the macro “Track Settings Copy And Paste”.
    Hope this help!
    Thank you,
    Philippe

    in reply to: Baby looper control #3604

    hi,
    Yes, please go to project configuration/Midi/Control inserts/By note
    there, you can select the track (fx1), the rank (1, for example), the command (1 == record on A in the blooper, 2 record on B in the blooper, 3 == start stop playing on A, etc (please see the user manual)), and the midi note…

    Tell me if you need more information.
    Thank you,
    Philippe

Viewing 15 posts - 46 through 60 (of 430 total)