We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37ab2eb + 67ccc3e commit 3195a94Copy full SHA for 3195a94
src/clips/audio/audio.ts
@@ -47,6 +47,7 @@ export class AudioClip extends MediaClip<AudioClipProps> {
47
public async init(): Promise<void> {
48
const objectURL = await this.source.createObjectURL();
49
this.element.setAttribute('src', objectURL);
50
+ this.element.load();
51
52
await new Promise<void>((resolve, reject) => {
53
this.element.oncanplay = () => {
0 commit comments