|
@@ -141,7 +141,13 @@ export default class JitsiStreamPresenterEffect {
|
141
|
141
|
timeMs: 1000 / this._frameRate
|
142
|
142
|
});
|
143
|
143
|
|
144
|
|
- return this._canvas.captureStream(this._frameRate);
|
|
144
|
+ const capturedStream = this._canvas.captureStream(this._frameRate);
|
|
145
|
+
|
|
146
|
+ // Put emphasis on the text details for the presenter's stream
|
|
147
|
+ // See https://www.w3.org/TR/mst-content-hint/
|
|
148
|
+ capturedStream.getVideoTracks()[0].contentHint = 'text';
|
|
149
|
+
|
|
150
|
+ return capturedStream;
|
145
|
151
|
}
|
146
|
152
|
|
147
|
153
|
/**
|