-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathenable_virtualbackground.dart
More file actions
185 lines (168 loc) · 5.77 KB
/
Copy pathenable_virtualbackground.dart
File metadata and controls
185 lines (168 loc) · 5.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import 'dart:io';
import 'package:agora_rtc_engine/agora_rtc_engine.dart';
import 'package:agora_rtc_engine_example/config/agora.config.dart' as config;
import 'package:agora_rtc_engine_example/components/example_actions_widget.dart';
import 'package:agora_rtc_engine_example/components/log_sink.dart';
import 'package:agora_rtc_engine_example/components/remote_video_views_widget.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:path/path.dart' as path;
import 'package:path_provider/path_provider.dart';
/// EnableVirtualBackground Example
class EnableVirtualBackground extends StatefulWidget {
/// @nodoc
const EnableVirtualBackground({Key? key}) : super(key: key);
@override
State<StatefulWidget> createState() => _State();
}
class _State extends State<EnableVirtualBackground>
with KeepRemoteVideoViewsMixin {
late final RtcEngine _engine;
bool _isReadyPreview = false;
bool isJoined = false, switchCamera = true, switchRender = true;
late TextEditingController _controller;
bool _isEnabledVirtualBackgroundImage = false;
@override
void initState() {
super.initState();
_controller = TextEditingController(text: config.channelId);
_initEngine();
}
@override
void dispose() {
super.dispose();
_engine.release();
}
Future<void> _initEngine() async {
_engine = createAgoraRtcEngine();
await _engine.initialize(RtcEngineContext(
appId: config.appId,
channelProfile: ChannelProfileType.channelProfileLiveBroadcasting,
));
_engine.registerEventHandler(RtcEngineEventHandler(
onError: (ErrorCodeType err, String msg) {
logSink.log('[onError] err: $err, msg: $msg');
},
onJoinChannelSuccess: (RtcConnection connection, int elapsed) {
logSink.log(
'[onJoinChannelSuccess] connection: ${connection.toJson()} elapsed: $elapsed');
setState(() {
isJoined = true;
});
},
onLeaveChannel: (RtcConnection connection, RtcStats stats) {
logSink.log(
'[onLeaveChannel] connection: ${connection.toJson()} stats: ${stats.toJson()}');
setState(() {
isJoined = false;
});
},
));
await _engine.enableVideo();
await _engine.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
await _engine.startPreview();
setState(() {
_isReadyPreview = true;
});
}
Future<void> _enableVirtualBackground() async {
ByteData data = await rootBundle.load("assets/agora-logo.png");
List<int> bytes =
data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);
Directory appDocDir = await getApplicationDocumentsDirectory();
String p = path.join(appDocDir.path, 'agora-logo.png');
final file = File(p);
if (!(await file.exists())) {
await file.create();
await file.writeAsBytes(bytes);
}
await _engine.enableVirtualBackground(
enabled: !_isEnabledVirtualBackgroundImage,
backgroundSource: VirtualBackgroundSource(
backgroundSourceType: BackgroundSourceType.backgroundImg,
source: p),
segproperty:
const SegmentationProperty(modelType: SegModelType.segModelAi));
setState(() {
_isEnabledVirtualBackgroundImage = !_isEnabledVirtualBackgroundImage;
});
}
void _joinChannel() async {
await _engine.joinChannel(
token: config.token,
channelId: _controller.text,
uid: config.uid,
options: const ChannelMediaOptions());
}
_leaveChannel() async {
if (_isEnabledVirtualBackgroundImage) {
await _enableVirtualBackground();
}
await _engine.leaveChannel();
}
@override
Widget build(BuildContext context) {
return ExampleActionsWidget(
displayContentBuilder: (context, isLayoutHorizontal) {
if (!_isReadyPreview) return Container();
return Stack(
children: [
AgoraVideoView(
controller: VideoViewController(
rtcEngine: _engine,
canvas: const VideoCanvas(uid: 0),
)),
Align(
alignment: Alignment.topLeft,
child: RemoteVideoViewsWidget(
key: keepRemoteVideoViewsKey,
rtcEngine: _engine,
channelId: _controller.text,
),
),
],
);
},
actionsBuilder: (context, isLayoutHorizontal) {
return Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextField(
controller: _controller,
decoration: const InputDecoration(hintText: 'Channel ID'),
),
Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: isJoined ? _leaveChannel : _joinChannel,
child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
),
)
],
),
Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text('Virtual background image: agora-logo'),
SizedBox(
height: 100,
width: 100,
child: Image.asset('assets/agora-logo.png'),
),
ElevatedButton(
onPressed: isJoined ? _enableVirtualBackground : null,
child: Text(
'${_isEnabledVirtualBackgroundImage ? 'disable' : 'enable'} virtual background image'),
),
],
),
],
);
},
);
}
}