Does anyone see multitrack recording happening well in-browser? Has anyone tried BandLab? Aside from the social slop and recent aggressive advertising, their recording app is super impressive, glitch free, low latency, easy to use and sounds great. Or will this always be the domain of installable software?
Tenacity – a multi-track audio editor/recorder
11–20 of 62 posts
Re: Tenacity – a multi-track audio editor/recorder
#12While Audacity is the app that I always have on every platform, UI is not so good. That shouldn't be hard to remake in raylib.
Re: Tenacity – a multi-track audio editor/recorder
#13An audacity fork. Reason for forking described at https://tenacityaudio.org/docs/_content/Introduction_and_Mot... . Their own summary: > at the primary reasons were attempts at adding telemetry and a new desktop privacy policy [by the new audacity maintainers] Previously discussed at https://news.ycombinator.com/item?id=34835200
Well, technically the reason for the fork was the implanted backdoor that was executing a binary coming from Muse groups server, hidden as telemetry and an update check. It's not a well built backdoor and the code is easy to spot, as there's not a lot of other http related code in audacity itself. edit: Check the au3/src/update/UpdateManager.cpp, they're still not hiding this better after all that happened, lol. [1]…
Re: Tenacity – a multi-track audio editor/recorder
#14Re: Tenacity – a multi-track audio editor/recorder
#15Does anyone see multitrack recording happening well in-browser? Has anyone tried BandLab? Aside from the social slop and recent aggressive advertising, their recording app is super impressive, glitch free, low latency, easy to use and sounds great. Or will this always be the domain of installable software?
Re: Tenacity – a multi-track audio editor/recorder
#16Does anyone see multitrack recording happening well in-browser? Has anyone tried BandLab? Aside from the social slop and recent aggressive advertising, their recording app is super impressive, glitch free, low latency, easy to use and sounds great. Or will this always be the domain of installable software?
Serious question: Why would it be preferable to have something like this in the browser? The thought of having to keep track of a browser tab that you might accidentally close and lose all your work doesn't sound great.
The allure is that the web is the most open, most stable and the most cross-device platform we have. Almost anything that was made for web still works today, with Flash and Java applets being the two big exceptions. Following the Lindy effect the self-contained web apps of today will still be operational far into the future.
Contrast this with Android's pathetic record of constantly breaking backward compatibility and restricting what software the users can even run on their devices.
Re: Tenacity – a multi-track audio editor/recorder
#17An audacity fork. Reason for forking described at https://tenacityaudio.org/docs/_content/Introduction_and_Mot... . Their own summary: > at the primary reasons were attempts at adding telemetry and a new desktop privacy policy [by the new audacity maintainers] Previously discussed at https://news.ycombinator.com/item?id=34835200
Well, technically the reason for the fork was the implanted backdoor that was executing a binary coming from Muse groups server, hidden as telemetry and an update check. It's not a well built backdoor and the code is easy to spot, as there's not a lot of other http related code in audacity itself. edit: Check the au3/src/update/UpdateManager.cpp, they're still not hiding this better after all that happened, lol. [1]…
I guess it could be improved by using and verifying signatures, but it seems pretty on point for a standard windows software auto update feature
Re: Tenacity – a multi-track audio editor/recorder
#18Does anyone see multitrack recording happening well in-browser? Has anyone tried BandLab? Aside from the social slop and recent aggressive advertising, their recording app is super impressive, glitch free, low latency, easy to use and sounds great. Or will this always be the domain of installable software?
With regards to recording - I'm curious how this would work on a scale like 16 ins at a time. Dumping bits from the interface to disk as uncompressed .wav is trivial, on the browser I'm not sure how storage works. Would it have to upload to the cloud immediately?
Re: Tenacity – a multi-track audio editor/recorder
#19Re: Tenacity – a multi-track audio editor/recorder
#20Earlier quoted context omitted.
Serious question: Why would it be preferable to have something like this in the browser? The thought of having to keep track of a browser tab that you might accidentally close and lose all your work doesn't sound great.
This is easy to fix with local storage. You reopen the tab and you're right where you left it. Unfortunately the companies see it as an opportunity to lock users in with cloud saving. The allure is that the web is the most open, most stable and the most cross-device platform we have. Almost anything that was made for web still works today, with Flash and Java applets being the two big exceptions. Following the Lindy…
Compare that to a win32 desktop app that will almost certainly keep working indefinitely without any changes. Plus you can use proper files for storage.