• atux

    @Balwyn said:

    This is not really the answer, but it does simulate glissando in sfont~.

    Yes, I adapted your patch to mine, and it works fine!
    It's funny that I was just working on solving the continuous glissando problem using the [bend $1( message as well, but in a slightly different way, maybe more clumsy... :smiley: .
    If I manage to get it to work, I'll post my solution too.

    Thanks a lot,
    a.

    posted in technical issues read more
  • atux

    @porres said:

    @dreamer said:

    I don't think you understand what AI is or does

    +1

    -1

    posted in Off topic read more
  • atux

    @atux said:

    I tried [makenote] but I think something's missing...

    Now I managed it without using [makenote]. The goal was to make each note persist until I change the number. In this way, by moving the slider, you obtain tied notes.
    Now it works.
    notein_3.png
    notein_3.pd

    But now the problem is this: for example, the values ​​60.0, 60.1, 60.2 inside the number box always get the same note. Is there a way to make all the notes sound at their true frequencies? In this way you can obtain a true continuous glissando.
    Thanks for any tips,

    a.

    posted in technical issues read more
  • atux

    @Balwyn said:

    Hi @atux will there be more than one pair of number boxes multiplied per preset

    Yes, thank you, I had considered this. But I was hoping for some object dedicated to the purpose.
    Anyway I did this:
    my_preset.png
    my_preset.pd

    Bye,
    a.

    posted in technical issues read more
  • atux

    @willblackhurst said:

    look at "make note" you connect makenote to noteout

    I tried [makenote] but I think something's missing... :worried:
    I mean, it works, but the durations are fixed... instead I need to figure out how to make the note off only happen when I change the number...
    Any tips?
    notein_2.png
    notein_2.pd

    Thanks,
    a.

    posted in technical issues read more
  • atux

    Hello,

    what's the best way to save the values of an n × m number box matrix in a preset that I can reload later? The goal is to create multiple presets, each with a different name. Here, the matrix is 2x3 for convenience, but I'm referring to much larger matrices.
    preset.png
    preset.pd

    Thanks,
    a.

    posted in technical issues read more
  • atux

    Hello,

    I would like to send midi notes to [notein] from a box number, so that when I scroll the box number, I simulate a chromatic scale performed with an external MIDI keyboard.
    I tried with [noteout]: the notes are sent correctly but they accumulate...they don't stop.
    II need to figure out how to handle the noteoff events.
    Essentially, when the number changes, the previous note must stop.
    [pd 0.54 on Linux + jack]
    notein.pd
    notein.png
    Thank you,
    a.

    posted in technical issues read more
  • atux

    @porres said:

    or...

    Screenshot 2025-12-09 at 19.27.01.png

    Nice, thanks.
    The else library is absolutely amazing!

    a.

    posted in technical issues read more
  • atux

    @whale-av said:

    @atux

    Capture.JPG

    David.

    Thank you!

    a.

    posted in technical issues read more
  • atux

    Hello,

    what is the correct link with [else/sfont~] object ?
    Thanks,
    a.
    Theremin.pd
    Theremin.png

    posted in technical issues read more
  • atux

    Hello,

    what is the best way in pd for simulating a pitch wheel, so that I can modulate the pitch in real time by moving a slider?
    [pd 0.54 on Linux]

    Thanks,
    a.

    posted in technical issues read more
  • atux

    Hi all,

    I have a txt file containing x,y values from multiple overlaid graphs.
    For example, this txt file contains (x,y) coordinates for 4 independent graphs that start and end at different points::
    txt_0.png
    Below I imported the data into a spreadsheet, separated it into different columns and plotted the graphs:
    graph.png
    In PureData, is there a way to read a txt file of this type file and plot the four graphs on the same canvas?
    test_graph.txt

    Thanks,
    a.

    posted in technical issues read more
  • atux

    @oid said:

    @atux Y-range goes from Ymax to Ymin.

    So in the array properties it must be set:
    x from min to max;
    y from max to min.

    In fact, setting x from 0 to 11, y from 61 to 60, it's drawn correctly.
    OK, thank you,
    a.

    posted in technical issues read more
  • atux

    Hi,

    if the list of values is increasing from 60 to 61, why does the graph appear decreasing?
    In the array1 properties I set x from 0 to 11, y from 60 to 61.
    test_array.png
    test_array.pd
    test3.txt

    [pd 0.54.0 on linux]

    Thank you,
    a.

    posted in technical issues read more
  • atux

    I was wondering how to create a patch to simulate the sound of a stone thrown into water (realistically).
    Are there any patches already made?
    Thanks,
    a.

    posted in patch~ read more
  • atux

    When using soundfonts with instruments that have a significant transient such as piano, organ, strings, etc., is there a way to remove all transients (except the first note) so that, by scrolling "pitch" box number up and down, you hear a single continuous glissando?

    Thanks,
    a.
    dis2con.png
    dis2con.pd

    posted in technical issues read more
  • atux

    @FFW said:

    [netsend] help for the [send( message says "same as list" so you can also do

    [hslider]
    |
    [list prepend z]
    |
    [netsend]
    

    Yes, that's how it works too.
    pd2py_v3.pd
    For less computational effort, is one preferable to the other, or are they equivalent?
    Thank you,
    a.

    posted in technical issues read more
  • atux

    @whale-av said:

    @atux You can try that....... pd2py_v2.pd
    Does it work?
    If not then post your Python code and someone will tell you why not.
    David.

    Thanks, it works fine.
    But in order for python to receive the values ​​correctly, I had to remove "-b" from [netsend -u -b].
    These are some values ​​received from pd:

    $ python3 py_from_pd.py
    Socket bind completed on 127.0.0.1:9999. Waiting for messages...
    Raw data received from ('127.0.0.1', 51903): b'z 0.5;\n'
    Decoded message: z 0.5;
    Value of z: 0.5
    Raw data received from ('127.0.0.1', 51903): b'z 0.509868;\n'
    Decoded message: z 0.509868;
    Value of z: 0.509868
    Raw data received from ('127.0.0.1', 51903): b'z 0.519737;\n'
    Decoded message: z 0.519737;
    

    It seems good to me.
    I attach both files, so it can be useful:
    py_from_pd.py
    pd2py_v2.pd

    Thank you,
    a.

    posted in technical issues read more
  • atux

    @FFW said:

    Simply connect the slider to the sender.

    Ok, but I left the blank space between slider and netsend because I don't know how to write the variable z that python expects. Something like "send z $1".

    posted in technical issues read more
  • atux

    Hi,

    a Python program needs to receive "z" from pd.

    In pd I generate "z" values by moving a slider.
    The Python code is already ready to receive z.

    What is the correct patch to do this?
    Thanks,
    a.
    pd2py.png
    pd2py.pd

    posted in technical issues read more
Internal error.

Oops! Looks like something went wrong!