Wonderful
Show HN: Wavepot – Digital audio workstation of the web
91–100 of 137 posts
Re: Show HN: Wavepot – Digital audio workstation of the web
#92Earlier quoted context omitted.
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…
> 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 74. But we got another repeat of the scenario: the OSS project was unable to muster decent UI while the commercial variant was able to both fund the staff and draw out the needs from its user community to make continual UI improvements. (Speaking specifically to the vas…
I think when Max 5 introduced "Presentation Mode" I knew it was over, and then Max for Live was the nail in the coffin, but prior to that I'd seen most students using Max because they believed it was more feature-rich even though most of our professors were using Pd to do more complex work than my Max-toting peers. Similar to Matlab/Octave... I've seen a few Octave users outpacing Matlab users simply because they were free to experiment without having the roadblocks of toolkit purchases.
Cycling 74 has done a good job over time for sure I'm just saying that as recently as 5-10 years ago there wasn't such a clear dichotomy, and the release of Max for Live really struck me because it was a proprietary integration, huge departure from pluggo's VST philosophy.
I think I just have to get used to the fact that despite the great work being done on projects like Pd/Jack/Ardour, audio technology is probably drifting further away from OSS than towards it
It's tough, I want to contribute to to some audio projects but most of the ones that are gaining traction seem to be putting up paywalls or are too rooted in platform-specific code. I'm toying with some audio stuff on the JVM, will see how that goes....
Re: Show HN: Wavepot – Digital audio workstation of the web
#93Earlier quoted context omitted.
Would someone kindly explain why I and two other users (msane and jrlocke) were downvoted for simply expressing delight? Is that somehow unwelcome? I don't see anything against that in the guidelines: http://ycombinator.com/newsguidelines.html Note, this isn't a complaint , it's merely a request to understand why my comment is inappropriate and to understand how I can express my approval of a submission without losin…
It's not against the guidelines, but it doesn't create conversation. Many people find that fairly useless, and prefer comments with substance that advance the community. The best way to express your approval of a submission? Upvote it.
Except with hidden vote scores it doesn't express anything at all (except changing a number on the OP's interface; the OP doesn't even know that you upvoted them).
If you want to express your approval to anyone other than the parent/OP or have anyone know who is expressing approval [that is occasionally relevant] then you have to comment.
Re: Show HN: Wavepot – Digital audio workstation of the web
#94For another take on live coding in the browser: http://gibber.mat.ucsb.edu/ Check out http://algorave.com for more info on the live coding music scene, which has really taken off in the last year. I can't wait for someone to combine live coding with Swift Playground/Bret Victor 'revealing the system' style interfaces.
THIS!
Let's build it!
Re: Show HN: Wavepot – Digital audio workstation of the web
#95Holy crap! This is great!
Would someone kindly explain why I and two other users (msane and jrlocke) were downvoted for simply expressing delight? Is that somehow unwelcome? I don't see anything against that in the guidelines: http://ycombinator.com/newsguidelines.html Note, this isn't a complaint , it's merely a request to understand why my comment is inappropriate and to understand how I can express my approval of a submission without losin…
Re: Show HN: Wavepot – Digital audio workstation of the web
#96A scene has sprung up around music based on algorithms, called Algorave http://en.wikipedia.org/wiki/Algorave Vice did an article on the subject a few months back which gives an overview of the scene (from a layman's view) http://www.vice.com/en_uk/read/algorave-is-the-future-of-dan...
Re: Show HN: Wavepot – Digital audio workstation of the web
#97Re: Show HN: Wavepot – Digital audio workstation of the web
#98I assume it's mostly the (basic?) physics of sound waves that I'd need to understand?
Re: Show HN: Wavepot – Digital audio workstation of the web
#99This 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…
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);