Skip to content

Commit

Permalink
test: Improve transmuxer tests (#5553)
Browse files Browse the repository at this point in the history
Closes #5546

Backported to v4.3.x
  • Loading branch information
avelad authored and joeyparrish committed Aug 30, 2023
1 parent 75de6e8 commit b66923d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test/util/ui_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,11 @@ shaka.test.UiUtils = class {
const video = /** @type {!HTMLVideoElement} */(document.createElement(
'video'));

video.muted = true;
// Tizen has issues with audio-only playbacks on muted video elements.
// Don't mute Tizen.
if (!shaka.util.Platform.isTizen()) {
video.muted = true;
}
video.width = 600;
video.height = 400;

Expand Down

0 comments on commit b66923d

Please sign in to comment.