Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diffusionstudio/core
The Video Creation Engine: Edit videos with code, featuring the fastest WebCodecs renderer for in-browser video processing.
https://github.com/diffusionstudio/core
aac browser canvas editing encode javascript mp4 opus recorder typescript video webcodecs webgl webgpu
Last synced: 2 days ago
JSON representation
The Video Creation Engine: Edit videos with code, featuring the fastest WebCodecs renderer for in-browser video processing.
- Host: GitHub
- URL: https://github.com/diffusionstudio/core
- Owner: diffusionstudio
- License: mpl-2.0
- Created: 2024-07-30T09:03:55.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-07T07:02:39.000Z (16 days ago)
- Last Synced: 2025-01-15T14:42:14.831Z (8 days ago)
- Topics: aac, browser, canvas, editing, encode, javascript, mp4, opus, recorder, typescript, video, webcodecs, webgl, webgpu
- Language: TypeScript
- Homepage: https://examples.diffusion.studio/
- Size: 92.9 MB
- Stars: 394
- Watchers: 11
- Forks: 36
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
diffusionstudio/core
# Getting Started
`@diffusionstudio/core` is an open-source, browser-based video editing library that allows developers to automate video editing workflows at scale, build custom editing applications, or seamlessly integrate video processing capabilities into existing projects.
## Documentation
Visit https://docs.diffusion.studio to view the full documentation.
## Why Use Diffusion Studio
π» 100% **client-side**
π¦ Fully **extensible** with [Pixi.js](https://pixijs.com/)
π©Έ Blazingly **fast** WebGPU/WebGL renderer
ποΈ **Cutting edge** WebCodecs export## Getting Started
```sh
npm install @diffusionstudio/core
```## Basic Usage
Let's take a look at an example:```typescript
import * as core from '@diffusionstudio/core';const source = await core.VideoSource // convenience function for fetch -> blob -> file
.from('https://diffusion-studio-public.s3.eu-central-1.amazonaws.com/videos/big_buck_bunny_1080p_30fps.mp4');// create a video clip and trim it
const video = new core.VideoClip(source) // compatible with the File API
.subclip(0, 160); // The base unit is frames at 30 FPS// create a text clip and add styles
const text = new core.TextClip({
text: 'Bunny - Our Brave Hero',
position: 'center',
stop: 80,
stroke: { color: '#000000' }
});const composition = new core.Composition(); // 1920x1080
// this is how to compose your clips
await composition.add(video); // convenience function for
await composition.add(text); // clip -> track -> composition// render video using webcodecs at 25 FPS
// use resolution: 2 to render at 4k
new core.Encoder(composition, { fps: 25 }).render();
```This may look familiar to some. That is because the API is heavily inspired by **Moviepy** and Swift UI. It models the structure of popular video editing applications such as Adobe Premiere or CapCut. The current state can be visualized as follows:
![Composition Visulization](./assets/composition.png)
Whereas each track contains zero or more clips of a single type in ascending chronological order.
A track will be created implicitly with `composition.add(clip)` however you can also create them manually like this:
```typescript
const track = composition.createTrack('text');
await track.add(text0);
await track.add(text1);
await track.add(text2);
...
```## Examples
You can find more [examples here.](https://github.com/diffusionstudio/examples), or give them a whirl on: https://examples.diffusion.studiohttps://github.com/user-attachments/assets/7a943407-e916-4d9f-b46a-3163dbff44c3
## How does DS Core compare to Remotion and Motion Canvas?
**Remotion** is a React-based video creation tool that transforms the entire DOM into videos. It's particularly suited for beginners, as web developers can start creating videos using the skills they already have.
**Motion Canvas** is intended as a standalone editor for creating production-quality animations. It features a unique imperative API that adds elements to the timeline procedurally, rather than relying on keyframes like traditional video editing tools. This makes Motion Canvas ideal for crafting detailed, animated videos.
In contrast, **Diffusion Studio** is not a framework with a visual editing interface but a **video editing library** that can be integrated into existing projects. It operates entirely on the **client-side**, eliminating the need for additional backend infrastructure. Diffusion Studio is also dedicated to supporting the latest rendering technologies, including WebGPU, WebGL, and WebCodecs. If a feature you need isn't available, you can **easily extend** it using [Pixi.js](https://github.com/pixijs/pixijs).
## Current features
* **Video/Audio** trim and offset
* **Tracks & Layering**
* **Splitting** clips
* **Html & Image** rendering
* **Text** with multiple styles
* Web & Local **Fonts**
* **Custom Clips** based on Pixi.js
* **Filters**
* **Keyframe** animations
* **Numbers, Degrees and Colors**
* **Easing** (easeIn, easeOut etc.)
* **Extrapolation** `'clamp' | 'extend'`
* **Realtime playback**
* **Hardware accelerated** encoding via WebCodecs
* **Dynamic render resolution and framerate**## Contributing
Contributions to DS Core are welcome and highly appreciated. Simply fork this respository and run:```sh
npm install
```Before checking in a pull request please verify that all unit tests are still green by running:
```sh
npm run test
```## Background
This project began in March 2023 with the mission of creating the "video processing toolkit for the era of AI." As someone passionate about video editing for over a decade, I saw Chromeβs release of Webcodecs and WebGPU without a feature flag as the perfect moment to build something new.
Currently, most browser-based video editors rely on server-side rendering, requiring time-consuming uploads and downloads of large video files. With Webcodecs, video processing can now be handled directly in the browser, making it faster and more efficient.
Iβm excited to be part of the next generation of video editing technology.
## Compatability
β Supported
π§ͺ Experimental
β Not supported### Desktop
| Browser | | Operating System | |
| ----------------- | -- | ----------------- | -- |
| Chrome | β | Windows | β |
| Edge | β | Macos | β |
| Firefox | β | Linux | β |
| Safari | β |
| Opera | β |
| Brave | β |
| Vivaldi | β |### Mobile
| Browser | | Operating System | |
| ----------------- | -- | ----------------- | -- |
| Brave Android | β | Android | β |
| Chrome Android | β | iOS | π§ͺ |
| Firefox Android | π§ͺ |
| Opera Android | β |
| Safari iOS | π§ͺ || | Demultiplexing | Multiplexing |
| ----------- | -------------- | -------------|
| Mp4 | β | β |
| Webm | β | β |
| Mov | β | β |
| Mkv | β | β |
| Avi | β | β || | Decoding | Encoding |
| ----------- | -------- | ----------------- |
| Avc1 | β | β |
| AAC | β | β (Chromium only)|
| Opus | β | β |
| Wav | β | β |
| Hevc | β | β |
| VP9 | β | β |
| VP8 | β | β |
| Mp3 | β | β |
| Ogg | β | β |