I'm pretty sure the current answer is no but is there a built in way for browsers to compress video / audio? Perhaps there is a hack as I'm sure browsers will have access to compression libraries. Maybe something like
If there is no way currently, perhaps somebody could link to the spec proposal if there is one.
Currently, there isn't a built in browser API for compressing existing video or audio files on the client side. However, you can compress through a few workarounds:
1. Using the MediaRecorder API
This API is primarily for recording media streams, but you can specify codecs and bitrates to control the size and quality. It is mainly made for capturing in a compressed format than compressing existing files.
2. Manipulating video frames with Canvas API
You can draw video frames onto a canvas at a lower res and theb capture this as a new video stream. This method can reduce file size but is less efficient for high quality or long videos.
3. WebAssembly and JavaScript Libraries
For more heavy-duty compression, you can use libraries compiled to WebAssembly, like ffmpeg.js. These are more resource-intensive and may not be ideal for all scenarios.
- Example using FFmpeg.js:
Ressources: