@@ -15,6 +15,7 @@ import '../publication/local.dart';
15
15
import '../track/local/audio.dart' ;
16
16
import '../track/local/local.dart' ;
17
17
import '../track/local/video.dart' ;
18
+ import '../track/options.dart' ;
18
19
import '../types/other.dart' ;
19
20
import '../types/participant_permissions.dart' ;
20
21
import '../types/video_dimensions.dart' ;
@@ -283,14 +284,17 @@ class LocalParticipant extends Participant<LocalTrackPublication> {
283
284
}
284
285
285
286
/// Shortcut for publishing a [TrackSource.screenShareVideo]
286
- Future <LocalTrackPublication ?> setScreenShareEnabled (bool enabled) async {
287
- return setSourceEnabled (TrackSource .screenShareVideo, enabled);
287
+ Future <LocalTrackPublication ?> setScreenShareEnabled (bool enabled,
288
+ {bool ? captureScreenAudio}) async {
289
+ return setSourceEnabled (TrackSource .screenShareVideo, enabled,
290
+ captureScreenAudio: captureScreenAudio);
288
291
}
289
292
290
293
/// A convenience method to publish a track for a specific [TrackSource] .
291
294
/// This is the recommended method to publish tracks.
292
295
Future <LocalTrackPublication ?> setSourceEnabled (
293
- TrackSource source, bool enabled) async {
296
+ TrackSource source, bool enabled,
297
+ {bool ? captureScreenAudio}) async {
294
298
logger.fine ('setSourceEnabled(source: $source , enabled: $enabled )' );
295
299
final publication = getTrackPublicationBySource (source);
296
300
if (publication != null ) {
@@ -314,6 +318,25 @@ class LocalParticipant extends Participant<LocalTrackPublication> {
314
318
room.roomOptions.defaultAudioCaptureOptions);
315
319
return await publishAudioTrack (track);
316
320
} else if (source == TrackSource .screenShareVideo) {
321
+ /// When capturing chrome table audio, we can't capture audio/video
322
+ /// track separately, it has to be returned once in getDisplayMedia,
323
+ /// so we publish it twice here, but only return videoTrack to user.
324
+ if (captureScreenAudio != null ) {
325
+ final tracks = await LocalVideoTrack .createScreenShareTracksWithAudio (
326
+ ScreenShareCaptureOptions (
327
+ captureScreenAudio: captureScreenAudio));
328
+ LocalTrackPublication <LocalVideoTrack >? publication;
329
+ for (final track in tracks) {
330
+ if (track is LocalVideoTrack ) {
331
+ publication = await publishVideoTrack (track);
332
+ } else if (track is LocalAudioTrack ) {
333
+ await publishAudioTrack (track);
334
+ }
335
+ }
336
+
337
+ /// just return the video track publication
338
+ return publication;
339
+ }
317
340
final track = await LocalVideoTrack .createScreenShareTrack (
318
341
room.roomOptions.defaultScreenShareCaptureOptions);
319
342
return await publishVideoTrack (track);
0 commit comments