-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathsend_metadata.dart
More file actions
252 lines (229 loc) · 7.63 KB
/
Copy pathsend_metadata.dart
File metadata and controls
252 lines (229 loc) · 7.63 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import 'dart:convert';
import 'dart:typed_data';
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:flutter/material.dart';
/// StreamMessage Example
class SendMetadata extends StatefulWidget {
/// Construct the [StreamMessage]
const SendMetadata({Key? key}) : super(key: key);
@override
State<StatefulWidget> createState() => _State();
}
class _State extends State<SendMetadata> {
late final RtcEngine _engine;
bool _isReadyPreview = false;
bool isJoined = false;
Set<int> remoteUids = {};
late final TextEditingController _channelIdController;
final TextEditingController _controller = TextEditingController();
@override
void initState() {
super.initState();
_channelIdController = TextEditingController(text: config.channelId);
_initEngine();
}
@override
void dispose() {
super.dispose();
_dispose();
}
Future<void> _dispose() async {
_engine.release();
}
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(() {
remoteUids.clear();
isJoined = false;
});
},
onUserJoined: (RtcConnection connection, int rUid, int elapsed) {
logSink.log(
'[onUserJoined] connection: ${connection.toJson()} remoteUid: $rUid elapsed: $elapsed');
setState(() {
remoteUids.add(rUid);
});
},
onUserOffline:
(RtcConnection connection, int rUid, UserOfflineReasonType reason) {
logSink.log(
'[onUserOffline] connection: ${connection.toJson()} rUid: $rUid reason: $reason');
setState(() {
remoteUids.remove(rUid);
});
},
));
_engine.registerMediaMetadataObserver(
observer: MetadataObserver(
onMetadataReceived: (metadata) {
logSink.log(
'[onMetadataReceived] metadata: ${metadata.toJson()}, metadata.buffer: ${metadata.buffer}');
debugPrint(
'[onMetadataReceived] metadata: ${metadata.toJson()}, metadata.buffer: ${metadata.buffer}');
debugPrint(
'[onMetadataReceived] metadata: ${metadata.toJson()}, String.fromCharCodes(metadata.buffer!): ${String.fromCharCodes(metadata.buffer!)}');
_showMyDialog(metadata.uid!,
utf8.decode(metadata.buffer!, allowMalformed: true));
},
),
type: MetadataType.videoMetadata,
);
// enable video module and set up video encoding configs
await _engine.enableVideo();
// make this room live broadcasting room
await _engine.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
setState(() {
_isReadyPreview = true;
});
}
void _joinChannel() async {
await _engine.joinChannel(
token: config.token,
channelId: _channelIdController.text,
uid: config.uid,
options: const ChannelMediaOptions());
}
Future<void> _leaveChannel() async {
await _engine.leaveChannel();
}
Future<void> _showMyDialog(int uid, String data) async {
return showDialog(
context: context,
barrierDismissible: false, // user must tap button!
builder: (BuildContext context) {
return AlertDialog(
title: Text('Receive from uid:$uid'),
content: SingleChildScrollView(
child: ListBody(
children: <Widget>[Text('data: $data')],
),
),
actions: <Widget>[
TextButton(
child: const Text('Ok'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}
Future<void> _onPressSend() async {
if (_controller.text.isEmpty) {
return;
}
try {
final data = Uint8List.fromList(utf8.encode(_controller.text));
await _engine.sendMetaData(
metadata: Metadata(buffer: data, size: data.length),
sourceType: VideoSourceType.videoSourceCamera);
_controller.clear();
} catch (e) {
logSink.log('sendMetaData error: ${e.toString()}');
}
}
@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: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: List.of(remoteUids.map(
(e) => SizedBox(
width: 120,
height: 120,
child: AgoraVideoView(
controller: VideoViewController.remote(
rtcEngine: _engine,
canvas: VideoCanvas(uid: e),
connection: RtcConnection(
channelId: _channelIdController.text),
),
),
),
)),
),
),
)
],
);
},
actionsBuilder: (context, isLayoutHorizontal) {
return Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
TextField(
controller: _channelIdController,
decoration: const InputDecoration(hintText: 'Channel ID'),
),
Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: isJoined ? _leaveChannel : _joinChannel,
child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
),
)
],
),
// if (isJoined) _renderVideo(),
if (isJoined)
Row(
mainAxisSize: MainAxisSize.max,
children: [
Expanded(
child: TextField(
controller: _controller,
decoration: const InputDecoration(
hintText: 'Input Message',
))),
ElevatedButton(
onPressed: _onPressSend,
child: const Text('Send'),
),
],
)
],
);
},
);
}
}