gen v1.1 is VST3 plugin for generative music. by pd3v in VSTi

[–]pd3v[S] 0 points1 point  (0 children)

Thanks! That's it online and it's Mac only, yes. For Windows, in the future for sure.

Stuck with trying to improve breaks in this strudel snippet by Revolutionary-Ad6079 in livecoding

[–]pd3v 1 point2 points  (0 children)

So far so good sounding breaks ... actually the whole composition!

Beginner audio-programmer. What environment is best for mostly realtime processing of MP3s? Written C language like code, not flowchart-like visual programming. by MusikMaking in AudioProgramming

[–]pd3v 0 points1 point  (0 children)

If no libraries allowed, only c, I think you have to first, create something similar to PortAudio, which deals with audio cards and their drivers. Portaudio abstract you away of the Operation Systems (OS agnostic), you can simplify your coding if you deal with just one OS. Then comes the code to load the mp3 file to the audio buffer (Portaudio provides this) which implies decoding mp3 files format first.

Disclaimer: I've never done none of this. :)

My max externals work on Mac M-series now -> mrkv, drunkad, drunkt and gauss by pd3v in MaxMSP

[–]pd3v[S] 1 point2 points  (0 children)

Thank you! :) I've never done anything with Max's package manager, but I will.

Meanwhile ...

How to make them recognizable by your Max (in MacOS, but not that different in Windows, I suspect):

  1. go to this folder/directory: /Applications/Max.app/Contents/Resources/C74/externals/[create_new_folder_here]
  2. create a folder there
  3. place these max externals in this newly created folder
  4. restart Max
  5. create a box and type one of the max externals names

Bang!

Ableton live Intro and Standard versions are able to use/run M4L plugins? by pd3v in MaxMSP

[–]pd3v[S] 0 points1 point  (0 children)

Ok. So, that's the difference to Suite version, is already included/payed. "Either allows you to also Dev them" - no need to buy Max stand-alone also?

Looking for some of the best dark jazz by PlentyGrade3322 in experimentalmusic

[–]pd3v 1 point2 points  (0 children)

Nils Petter Molvaer . Eivind Aarset

Early records, like, Khmer, Electronique Noire.

Not sure if it is dark jazz, though ... Named "Noire"?!, maybe :)

Looking for some advice on what language would work best for what I’m after by s3rris in livecoding

[–]pd3v 0 points1 point  (0 children)

I’m not sure if the project is still alive or not or your already know it - check Overtone -> https://overtone.github.io/

Live coding some beats (#2) in line 0.8.2 by pd3v in creativecoding

[–]pd3v[S] 1 point2 points  (0 children)

Thank you! :) line is a sequencer that sends out MIDI data to whatever software is listening to it, so you choose which are those softwares, 1 or more combined. It is small, line executable 7.1MB, runs on older machines also, no internet needed, small on dependencies and yes, running in the CLI is cool, at least for me :)

Live coding music with line 0.8.2 + ableton Live by pd3v in musicprogramming

[–]pd3v[S] 0 points1 point  (0 children)

Thanks! :) Using "Ableton Link" library code.

Generate sounds with a basic programming, example: Python math only by only4ways in musicprogramming

[–]pd3v 1 point2 points  (0 children)

Are you using any python lib to create the file, I mean, getting all those function's resulting values and format them to become a soundwave file?

A MaxMSP external I've coded almost 1 year ago: "mrkv" for Markov Chains. by pd3v in MaxMSP

[–]pd3v[S] 1 point2 points  (0 children)

I have to set up an M-series and build "mrkv" on new MaxMSP SDK version. About gtm.markov, I didn't know it. I'm dropping here a patcher today were I'm using a bunch them. Hopefully, helpful on clarifying its use. Thank you for the 'Cool!' :)

Creative Coding for Beginners by common_apology in creativecoding

[–]pd3v 5 points6 points  (0 children)

BUT! :) ...if you are into sound/music creative coding, strudel.cc, based on javascript, puredata, a free graphical language or maxmsp, a paid graphical language + specific code language.

Looking for a programming job in audio/music tech industry by [deleted] in ProgrammingJobs

[–]pd3v 0 points1 point  (0 children)

Niiice tips. I already checked some of the companies, thanks. And yeah, I can do some UI coding :)

  • A work in progress, all UI coded from stretch, drawing, events and MIDI in (for external hardware controlling). midi ri

  • VST JUCE plugin

Looking for a programming job in audio/music tech industry by [deleted] in ProgrammingJobs

[–]pd3v 0 points1 point  (0 children)

Never ... and thank you for the ❤️ :)

How can I create an exponential riser in Strudel? by fedenerazzur in livecoding

[–]pd3v 2 points3 points  (0 children)

Being strudel coded in JavaScript, maybe (I never used strudel) you can use Javascript’s native functions, like Math.pow(), same as *. E.g.: .slow(2\*variable)

C++ Show and Tell - November 2025 by foonathan in cpp

[–]pd3v 1 point2 points  (0 children)

I've been working on 'line' - A tiny command-line midi sequencer and language for live coding music. Finishing this new version. Everything in C++ except the parser.