Pure Data Tutorial: Simple waveforms

Поділитися
Вставка
  • Опубліковано 7 сер 2024
  • In this video I talk about the fundamental waveforms in Pure Data Vanilla. Stay tuned for future episodes!
    Check out my Instagram:
    / dialogue.wav
    00:00 Sine waveform
    02:00 Saw waveform
    03:41 Square waveform
    05:33 Triangular waveform
    #puredata #tutorial #waveforms

КОМЕНТАРІ • 9

  • @ImSamKnight
    @ImSamKnight 2 роки тому +2

    great video! Think you'll ever make that part 2? This was very helpful

    • @SoundCodex
      @SoundCodex  2 роки тому

      Thanks, I'm glad it was helpful. I'll upload part 2 in a few days!

    • @gab_gallard
      @gab_gallard 2 роки тому +1

      @@SoundCodex I have the same question. I found this super useful but you left us hanging on a cliffhanger there :D

    • @SoundCodex
      @SoundCodex  2 роки тому

      @@gab_gallard haha don't worry I'll upload the next video tomorrow! Thank you btw

  • @pathagas
    @pathagas Рік тому

    i came up with my own solutions for square and triangle waves. it’s interesting to see the different approaches
    for square, you can use an [osc~], [abs~], and [/~] to take the absolute value of [osc~] and divide the result by [osc~] so you essentially have |sin(x)|/sin(x).
    for a triangle wave, you can multiply that by a saw wave with twice the frequency.

    • @SoundCodex
      @SoundCodex  Рік тому +1

      Your solutions are really interesting. I agree with you: realizing how others think is a great way to learn. Thanks for your comment!

  • @TheSlyProfessor
    @TheSlyProfessor 8 місяців тому

    Great video, thanks. Why clip phaser from 0 to 1 if you are going to make it bipolar in the next step?

  • @basiliodelboca3462
    @basiliodelboca3462 9 місяців тому

    hi, I think the following code is simpler for a triangular wave.
    [phasor~]
    [expr~ abs($v1*2-1)*2-1]

    • @SoundCodex
      @SoundCodex  9 місяців тому

      Thanks for sharing this quick and easy alternative!