Show HN: Wavepot – Digital audio workstation of the web
131–137 of 137 posts
Re: Show HN: Wavepot – Digital audio workstation of the web
#132Re: Show HN: Wavepot – Digital audio workstation of the web
#133Earlier quoted context omitted.
yea want to try it but i'm stuck on max 5... max upgrades are more expensive than they're worth & now its splitting into multiple products (max4live,gen) so i'm kindof on an every other generation plan unfortunately. especially annoying when features you like get deprecated (pluggo, ms. pinky) though i understand gen & max4live both kinda serve as pluggo replacements. all in all its just hard for me to pull the trigg…
And I should point out that I personally feel kinda guilty... I met Miller Puckette and he was so enthusiastic about PureData and how much more the community could grow. I realize the biggest reason Max is thriving is because of marketing and now integration with Ableton. I feel like if something were done to prevent Pd from being wiped off the map we could have had an open source community by now rather than Cycling…
Re: Show HN: Wavepot – Digital audio workstation of the web
#134This isn't really a DAW. For those unfamiliar, a DAW is a fully-featured music creation environment including sound design, composition, recording, arrangement and mixing in one interface. Examples include logic, cubase and ableton. While I suppose this does allow for all of those things, as much as any programming language with access to an audio API does, this would be better described as a web-based DSP livecoding…
This is awesome! I'll certainly contribute to this. Will the source be opened up? Here's a delay filter: var delay_array = []; var delay_length = 5; var delay_feedback = 0.6; var delay_volume = 0.4; function delay(x) { y = 0; if (delay_array.length Include this in the DSP return code, ie; return delay(synth);
Re: Show HN: Wavepot – Digital audio workstation of the web
#135it's probably me, but I get nothing... - ff (latest beta) : waveform thingy works, no sound - chrome (latest beta) : no waveform, no sound - IE (11) : nothing
For Mint: Firefox 29 - everything works; Chromium 34 - only grey background
For CyanogenMod: Chrome 35 - everything works; Dolphin 10.3.1 - only grey background
Re: Show HN: Wavepot – Digital audio workstation of the web
#136Earlier quoted context omitted.
This is awesome! I'll certainly contribute to this. Will the source be opened up? Here's a delay filter: var delay_array = []; var delay_length = 5; var delay_feedback = 0.6; var delay_volume = 0.4; function delay(x) { y = 0; if (delay_array.length Include this in the DSP return code, ie; return delay(synth);
Yes that's a good delay filter but it's also a good example why this type of user-programmable synth apparatus, which looks similar to CSound, won't catch on. There is much more going on in the typical delay sound itself than just a delayed iteration of a sample. A pure delay is boring. There is the possibility to model all kinds of analog and hardware digital delays with additional coding, but people have been doing…
Re: Show HN: Wavepot – Digital audio workstation of the web
#137Earlier quoted context omitted.
Yes that's a good delay filter but it's also a good example why this type of user-programmable synth apparatus, which looks similar to CSound, won't catch on. There is much more going on in the typical delay sound itself than just a delayed iteration of a sample. A pure delay is boring. There is the possibility to model all kinds of analog and hardware digital delays with additional coding, but people have been doing…
There's more to digital audio processing than code? I don't get it. Once the collaborative module system is in place (see milestone I) it'll allow for more complex stuff, as you'd be joining components and moving upwards in the abstraction levels, I don't see how big companies can compete with that.