mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
* fix(producer): don't mix audio from muted videos into the render The auto-detect audio block checked ext.metadata.hasAudio (file has audio track) but not video.hasAudio (element declares itself audible). A <video muted> whose source file contains audio leaked that audio into the final render at full volume. Add video.hasAudio guard so only audible elements contribute audio. * test(producer): add unit tests for muted video audio guard * fix: format