-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat(*): LU-3384 vp9 webm #58
Conversation
✅ Linked to Bug LU-3384 · Fix transparency issue |
@@ -41,6 +41,13 @@ const createDecoder = ({ | |||
}); | |||
} | |||
|
|||
if (demuxer.streams[streamIndex].codecpar.name === 'vp9') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooo nice, I wonder if this also fixes that one off scene design Kanwar had to re-encode
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file is kinda big (especially relative to the rest of the repo). It might be nice to trim it down to just a few seconds? Since we only seek 100ms in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I trimmed it.
When looking at the
webm
D-ID provides us I noticed that it was using thevp9
encoder instead of the previously addingvp8
. In this PR, we're adding support tovp9
.