-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
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
Every video returns "Uncaught frame [x] has a different width. #47
Comments
Did you get a solution for this, only we have been seeing the same issues. Updates to the meadiastream api seem to have killed it! |
I faced the same issue - I realized that the issue is not really about the canvas width and height but the width and height of the canvas background (i.e. if it is transparent, it doesn't count). I'm not sure if this explanation is correct, but I got through the issue by adding this to the canvas before taking a picture
|
Hi, I encountered the same issue today while recording video using PixiJS animation. What could be the issue? Regards, |
I had this problem when I was using |
@paarthenon I get the very same problem and also fixed it with setting quality to 0.9 |
I am attempting to create a webm video from an array of images (webp). I am using the below code:
var webmBlob = Whammy.fromImageArray(frames, 24);
url = window.URL.createObjectURL(webmBlob);
Every time this code runs, it throws an error that 1 frame has a different width and the video fails to render.
I have set the width and height of the video source and the canvas both inline and in the css and don't know what else I can do.
The text was updated successfully, but these errors were encountered: