Skip to content

Commit

Permalink
Add additional params in the shaka player video track
Browse files Browse the repository at this point in the history
  • Loading branch information
comrat committed Nov 1, 2023
1 parent 4b79acc commit 7fd36c8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion platform/video.shaka/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,12 @@ Player.prototype.getVideoTracks = function() {
video.push({
id: track.id,
width: track.width,
height: track.height,
active: track.active,
framerate: track.frameRate,
bandwidth: track.videoBandwidth,
height: track.height
audiocodec: track.audioCodec,
videocodec: track.codecs
})
}
}
Expand Down

0 comments on commit 7fd36c8

Please sign in to comment.