Skip to content

Commit b819951

Browse files
committed
v1.0.0-rc.3 preparations
1 parent 71e7cf6 commit b819951

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ npm i @diffusionstudio/core
2424

2525
Visit https://docs.diffusion.studio to view the full documentation.
2626

27+
## Why Use Diffusion Studio
28+
💻 Fully client-side<br/>
29+
📦 Fully extensible with Pixi.js<br/>
30+
🩸 WebGPU/WebGL API support<br/>
31+
🏎️ WebCodecs API support<br/>
32+
2733
## Basic Usage
2834
Let's take a look at an example:
2935

@@ -72,7 +78,8 @@ await track.add(text2);
7278
...
7379
```
7480

75-
The composition, the track and the clips are each in a relationship of `1:n`. You can find more [examples here.](https://github.com/diffusionstudio/examples), or give them a whirl on: https://examples.diffusion.studio
81+
## Examples
82+
You can find more [examples here.](https://github.com/diffusionstudio/examples), or give them a whirl on: https://examples.diffusion.studio
7683

7784
https://github.com/user-attachments/assets/7a943407-e916-4d9f-b46a-3163dbff44c3
7885

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@diffusionstudio/core",
33
"private": false,
4-
"version": "1.0.0-rc.2",
4+
"version": "1.0.0-rc.3",
55
"type": "module",
66
"description": "Build bleeding edge video processing applications",
77
"files": [

playground/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ await composition.add(
5757
new core.AudioClip(await core.AudioSource.from('/audio.mp3'), {
5858
transcript: core.Transcript.fromJSON(captions).optimize(),
5959
})
60-
)).generateCaptions();
60+
)).addCaptions();
6161

6262
await composition.add(
6363
new core.TextClip({

0 commit comments

Comments
 (0)