0

When using tokbox, how does one decrease the video stream resolution while keeping the video dimensions the same, in order to avoid hogging the CPU?

Lucas Huang
  • 3,998
  • 3
  • 20
  • 29
TheNavigat
  • 864
  • 10
  • 30

1 Answers1

1

specify a lower resolution as described in the API and use CSS on the video element to specify the width/height so the dimensions do not automatically adapt to the resolution of the video stream.

Philipp Hancke
  • 15,855
  • 2
  • 23
  • 31
  • When aspect's the same you don't even need CSS, just specify a fixed width and height on the video element. – jib Jun 17 '16 at 16:28