We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.webm
let _audio = document.querySelector("#my-audio"); // ../assets/audio.mp3 let _video = document.querySelector("#my-video"); // https://my-host.com/video-name.webm merger.addMediaElement("_audio", _audio, {}); merger.addMediaElement("_video", _video, { mute: true, }); merger.start(); let outputElement = document.querySelector<HTMLVideoElement>("#output"); outputElement.srcObject = merger.result; outputElement.autoplay = true;
The code above doesnt work, the result video was always loading.
When I changed the video path to https://my-host.com/another.mp4, it merged normally.
https://my-host.com/another.mp4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code above doesnt work, the result video was always loading.
When I changed the video path to
https://my-host.com/another.mp4
, it merged normally.The text was updated successfully, but these errors were encountered: