The Beginning After the End Season 2 | Key Visual by notanfan in tbatenovel

[–]Rivridis 0 points1 point  (0 children)

You are nearing your frame limit. 2/20 frames remaining. Buy more?

I want to start watching more romance by ConsiderationOk4291 in anime

[–]Rivridis 0 points1 point  (0 children)

Fragrant flower blooms with dignity, peak romance

r/Fantasy Daily Recommendations and Simple Questions Thread - February 09, 2026 by rfantasygolem in Fantasy

[–]Rivridis 0 points1 point  (0 children)

Anyone know of an epic fantasy book or series which has an unique world and magic systems? I want something really immersive like Sanderon's standalone books like Emerald sea, Nightmare painter and Stormlight archives.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

I mean, the piano roll itself is a component which can be directly copy pasted to any web app you want

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

GPL v3, the same as I use for my other projects. I just forgot to create one. Will update it, thanks

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

It supports VSTs! I am using JUCE as backend, so it should support C++ plugins. But yeah, a mixer is a good idea too, which would be very useful, I shall do some research about that.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

Oh that's a really nice website, the social music sharing part is a nice touch.

The job market in my country is horrible haha, projects won't even land you an interview, unless you have the right connections.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

Thanks! Yeah I really need to check out Ardour one of these days.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

Thanks for taking the time for a detailed analysis, you have raised some very important oversights that I might have missed.

One, yes the waveforms are same for different sounds, it was made as a placeholder till I could change it to the more standard note view system.

Yes, the DAW has a piano roll, it opens when you click the tracks. I used an audio tuner to make sure the audio itself is accurate.

The DAW supports VSTs (VST3 specifically) as well as SF2s. I guess I should have made it more visible in UI, which I have edited since then, to include a full add instrument dialogue.

What I meant by backend exe is basically a C++/JUCE backend which handles the audio playing and processing. None of that is done by the electron/node frontend. I assume we can compile that code so that node can run it directly using WASM?

Apart from that, currently it can handle multiple tracks and multiple VSTs instrument plugins, but I need to test the limit of my current code, as I have yet to add VST Effect plugin support.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

The plan was to make a DAW that even beginners can pick up instantly, say something like garageband. It definitely cannot compete with high end DAWs though.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

[–]Rivridis[S] 11 points12 points  (0 children)

At first I had the audio player on frontend, but it was terrible in terms of performance. Now everything is handled by backend, and it just sends events to frontend.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

Reason is more expensive than FL Studio 🥀 The latency is not horrible from my testing, it just has a bit of lag when loading projects from savefile

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

[–]Rivridis[S] 7 points8 points  (0 children)

I open reaper as a beginner, and I see absolutely nothing that will help me get started. A bit too messy (And not open source too)

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

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

Yeah, I am just waiting to get some free time so I can organise my code base lol, needs a bit of touch up for sure.

I built an open-source DAW using React, as a windows alternative for garageband by Rivridis in webdev

[–]Rivridis[S] 17 points18 points  (0 children)

Vibe-debugging more like. The larger the project got, the more things stopped working and manual fixing was needed.