5 ms·
For people who don't want to sign up but still like the idea of a video editor running in a browser (that doesn't upload anything), I am working on an alternati
by bjano 4y ago
For people who don't want to sign up but still like the idea of a video editor running in a browser (that doesn't upload anything), I am working on an alternative:
https://vidmix.app https://vidmix.app
- stjohnswarts 4y agothanks. I don't think I should have to log in to type a document or edit a video. :/ Thank you!
- sorenjan 4y ago> Your browser has limited support for this webapp. Please use the latest Chrome or Edge for better performance, stability, and more features. Using Firefox 105. What features are bad or missing in Firefox, and do you know if Mozilla is working on fixing them?
- bjano 4y agoWebCodecs is missing. They say it's "worth prototyping" [1] but I don't know whether they are working on it. 1: https://mozilla.github.io/standards-positions/ https://mozilla.github.io/standards-positions/
- krono 4y agoAs I understand it, Web Codecs is quite a ways away from being a web standard - it is currently just a draft[1] for a recommendation for a possible future standard. Just beware of any major API changes or any indication that it might be dropped in its entirety! [1]:https://w3c.github.io/webcodecs/ https://w3c.github.io/webcodecs/
- BuckRogers 4y agoStuff like that and late AV1[0] are one reason I moved to Edge after 19 years on Firefox. More so just that I was impressed with Edge when I tried it. Brave also stood out to me when I tested every browser. It’s fast but has the distinction of being the only semi-major browser that’s fully open source other than Firefox. Edge is still very good, I would say it’s the best browser going but I’d be tarred and feathered for that. [0]https://www.androidpolice.com/mozilla-is-finally-adding-av1-support-to-firefox-a-full-two-years-after-chrome-and-edge/ https://www.androidpolice.com/mozilla-is-finally-adding-av1-...
- sorenjan 4y agoI think using Chrome or Edge for PWAs and Firefox for general browsing is an acceptable compromise. I don't need to use the same program for video editing and reading news articles etc, although it would be nice if I could.
- BuckRogers 4y agoFor the technologist that wants that single program, and values privacy and transparency like most of us do, Brave fits the bill nicely. It’s currently my second favorite browser after Edge. That said, I had Clipchamp installed from the MS Store before I went back to MS Video Editor.
- preommr 4y agoFeels like we're burying the lede here focusing on firefox/chrome or having to login when it's really damned impressive that you have an entire video editor in the browser. So it seems like codec support allows viewing individual frames, and you've got some kind of ffmpeg script, and some kind of totally canvas based ui. There's a lot of cool tech in here showing some really interesting possibilities. Congrats on that! What kind of ui library are you using for this btw?
- bjano 4y agoI've built the UI library myself, it's written in C++ and is drawing with OpenGL. (translated to WebGL by emscripten) Javascript is only used for the browser-related parts. The point of this is that the javascript layer can be easily replaced and the project built for other platforms. (for example it runs on iOS natively: https://apple.co/3QVAYAq https://apple.co/3QVAYAq)
- throw_m239339 4y agoLooks good, can you tell us more about the tech behind it? Are you running FFMPEG in the browser or something?
- bjano 4y agoI use a WebAssembly build of FFmpeg to extract the streams and packets from the video files and as a fallback for some codecs. But most of the decoding/encoding is done with WebCodecs which in most cases has access to hardware acceleration so can be much faster than ffmpeg.