• flextUser

    @oid Excellent!
    @EEight

    BTW, I just created a public repo here:

    github timeline

    posted in extra~ read more
  • flextUser

    @oid said:

    plugin-dispatch

    Thanks for the suggestions!
    I was unable to locate the plugin-dispatch-receiver, though.

    posted in extra~ read more
  • flextUser

    @EEight

    It's a TCL script that can be run with Wish (found in Pd/bin). OSC would be overkill for this, but it's still an option. Yes, Iannix is great, it also saves its data in a text format, which is perfect for long-term archival of works.

    posted in extra~ read more
  • flextUser

    @oid "Changing your mind about avoiding Tcl?" Haha, yes!
    So for the clock I use [after], not very precise (?), like most of the performers I know :joy:
    I know structures well, I've used them for some graphics like interactive bars for visualizing data from sensors.

    posted in extra~ read more
  • flextUser

    Hey,

    I've been looking for a straightforward multitrack timeline tool that can send automation values, but I couldn't find anything that works for me. So, I created a little TCL app to do just that.

    Currently, it's still a work in progress and I don't know if it is worth developing the idea further. I'm trying to figure out what values to send, especially when it comes to dealing with single points. I'm not entirely sure how useful it will be in the end, but I thought I'd share my progress in case anyone else is looking for something similar.

    Send me your thoughts.

    posted in extra~ read more
  • flextUser

    No, but there is slop~ that can work for a similar purpose. slop~ functions as a controllable slew limiter. It's not an implementation of Andrew Simper's algorithm, but it can be used for signal smoothing/denoising sensors. It's a single pole. I'm not a filter expert, though.

    posted in technical issues read more
  • flextUser

    @porres Sorry, this one: Jussi Pekonen, Juhan Nam, Vesa Välimäki and Julius O. Smith " Optimized Polynomial Spline Basis Function Design for Quasi-Bandlimited Classical Waveform Synthesis,” IEEE Signal Processing Letters, 2012.

    The web page is here:
    https://ccrma.stanford.edu/~juhan/vas.html

    posted in extra~ read more
  • flextUser

    @porres Sure. If you have access to IEEE you can get the article here:

    https://ccrma.stanford.edu/~juhan/publication.html

    and for anything filters, this is the best source:

    https://ccrma.stanford.edu/~jos/filters/

    posted in extra~ read more
  • flextUser

    @whale-av Ha ha, Love the name "Tcl for a rainy day" project. It rains almost every day for 6 months where I live....the popup is good stuff.

    posted in technical issues read more
  • flextUser

    @oid Not too hard, but I would rather stay away from TCL :smile:

    cusotmkeys.mp4

    posted in technical issues read more
  • flextUser

    @porres Combination of filters to emulate the Prophet V...in progress :smile:

    posted in extra~ read more
  • flextUser

    @oid Cool, thanks. I am not a fan of TCL/TK, but I am curious as to how difficult it would be to add a menu to load my own settings. Is this something that can be done with plugins alone ?

    posted in technical issues read more
  • flextUser

    In pd_bindings.tcl, I replaced this :

    # and the Pd window is in a class to itself
        bind all <KeyPress>         {::pd_bindings::sendkey %W 1 %K %A 0 %k}
        bind all <KeyRelease>       {::pd_bindings::sendkey %W 0 %K %A 0 %k}
        bind all <Shift-KeyPress>   {::pd_bindings::sendkey %W 1 %K %A 1 %k}
        bind all <Shift-KeyRelease> {::pd_bindings::sendkey %W 0 %K %A 1 %k}```
    
    with:
    
    

    Max style bindings

    bind all <KeyPress> {
        set w [winfo toplevel %W]
        if {[winfo class $w] eq "PatchWindow" && $::editmode($w) && !$::editingtext($w)} {
            switch -- %K {
                "n" {menu_send_float %W obj 0}
                "m" {menu_send_float %W msg 0}
                "i" {menu_send_float %W floatatom 0}
                "l" {menu_send_float %W listbox 0}
                "c" {menu_send_float %W text 0}
                "b" {menu_send %W bng}
                "f" {menu_send %W numbox}
                "v" {menu_send %W vslider}
                "h" {menu_send %W hslider}
                "r" {menu_send %W hradio}
                "d" {menu_send %W vradio}
                "g" {menu_send %W graph}
                "a" {menu_send %W menuarray}
                "u" {menu_send %W vumeter}
                default {::pd_bindings::sendkey %W 1 %K %A 0 %k}
            }
        } else {
            ::pd_bindings::sendkey %W 1 %K %A 0 %k
        }
    }
    bind all <KeyRelease>       {::pd_bindings::sendkey %W 0 %K %A 0 %k}
    bind all <Shift-KeyPress>   {::pd_bindings::sendkey %W 1 %K %A 1 %k}
    bind all <Shift-KeyRelease> {::pd_bindings::sendkey %W 0 %K %A 1 %k}```
    

    Are there any implications? Why isn't this (or similar) a default setting?

    posted in technical issues read more
  • flextUser

    @tungee External. I hope to Deken soon, and for the moment, Windows only.

    posted in extra~ read more
  • flextUser

    with PWM and some analog emulation.

    wish86_GykfvHVPG5.png

    posted in extra~ read more
  • flextUser

    @gidiesse Bravissimo :clap: :clap: :clap:

    posted in news read more
  • flextUser

    I have this one (Windows only)
    euclid.gif ```

    posted in patch~ read more
  • flextUser

    Hi porres. It's an external compiled for Windows. Nothing up yet but will be, as soon as I finish the rest of the library.

    posted in abstract~ read more
  • flextUser

    compressor~ external with some UI objects I made.

    compressor~.png

    posted in abstract~ read more
Internal error.

Oops! Looks like something went wrong!