Write home page, add logo, configure theme

This commit is contained in:
Vanilagy
2025-06-23 13:18:25 +02:00
parent b15a5cd984
commit c546deed7a
20 changed files with 500 additions and 72 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Introduction
Mediabunny is a JavaScript library for reading, writing, and converting media files (like MP4 or WebM), directly in the browser. It aims to be a complete toolkit for doing high-performance media operations on the web. It's written from scratch in pure TypeScript, has zero dependencies, and is extremely tree-shakable, meaning you only include what you use. You can think of it like [FFmpeg](https://ffmpeg.org/), but built for the web.
Mediabunny is a JavaScript library for reading, writing, and converting media files (like MP4 or WebM), directly in the browser. It aims to be a complete toolkit for doing high-performance media operations on the web. It's written from scratch in pure TypeScript, has zero dependencies, and is extremely tree-shakable, meaning you only include what you use. You can think of it kind of like [FFmpeg](https://ffmpeg.org/), but built for the web's needs.
## Features
+7 -1
View File
@@ -467,7 +467,13 @@ const output = new Output({
// ...
});
const conversion = await Conversion.init({ input, output });
const conversion = await Conversion.init({
input,
output,
audio: {
sampleRate: 16000, // Resample to 16 kHz
},
});
await conversion.execute();
// Conversion is complete
```