-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathrtmp_streaming.dart
More file actions
265 lines (239 loc) · 7.91 KB
/
Copy pathrtmp_streaming.dart
File metadata and controls
265 lines (239 loc) · 7.91 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
253
254
255
256
257
258
259
260
261
262
263
264
265
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';
/// RtmpStreaming Example
class RtmpStreaming extends StatefulWidget {
/// Construct the [RtmpStreaming]
const RtmpStreaming({Key? key}) : super(key: key);
@override
State<StatefulWidget> createState() => _RtmpStreamingState();
}
class _RtmpStreamingState extends State<RtmpStreaming> {
late final RtcEngine _engine;
bool _isReadyPreview = false;
String channelId = config.channelId;
bool isJoined = false;
bool switchCamera = true;
late TextEditingController _channelIdController;
late TextEditingController _rtmpUrlController;
late final TextEditingController _channelUidController;
bool _isStreaming = false;
int _remoteUid = 0;
@override
void initState() {
super.initState();
_channelIdController = TextEditingController(text: channelId);
_channelUidController = TextEditingController(text: '1001');
_rtmpUrlController = TextEditingController();
_initEngine();
}
@override
void dispose() {
_dispose();
super.dispose();
}
Future<void> _dispose() async {
await _engine.leaveChannel();
await _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;
});
_startTranscoding();
},
onUserJoined: (RtcConnection connection, int rUid, int elapsed) {
logSink.log(
'[onUserJoined] connection: ${connection.toJson()} remoteUid: $rUid elapsed: $elapsed');
setState(() {
_remoteUid = rUid;
});
},
onUserOffline:
(RtcConnection connection, int rUid, UserOfflineReasonType reason) {
logSink.log(
'[onUserOffline] connection: ${connection.toJson()} rUid: $rUid reason: $reason');
setState(() {
_remoteUid = 0;
});
},
onLeaveChannel: (RtcConnection connection, RtcStats stats) async {
logSink.log(
'[onLeaveChannel] connection: ${connection.toJson()} stats: ${stats.toJson()}');
if (_isStreaming && _rtmpUrlController.text.isNotEmpty) {
await _engine.stopRtmpStream(_rtmpUrlController.text);
_isStreaming = false;
}
setState(() {
isJoined = false;
});
},
onRtmpStreamingStateChanged: (String url, RtmpStreamPublishState state,
RtmpStreamPublishReason errCode) {
logSink.log(
'[onRtmpStreamingStateChanged] url: $url state: $state, errCode: $errCode');
},
onRtmpStreamingEvent: (String url, RtmpStreamingEvent eventCode) {
logSink.log('[onRtmpStreamingEvent] url: $url eventCode: $eventCode');
},
));
await _engine.enableVideo();
await _engine
.setChannelProfile(ChannelProfileType.channelProfileLiveBroadcasting);
await _engine.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
await _engine.startPreview();
setState(() {
_isReadyPreview = true;
});
}
void _joinChannel() async {
final uid = int.tryParse(_channelUidController.text);
if (uid == null) return;
await _engine.joinChannel(
token: config.token,
channelId: _channelIdController.text,
uid: uid,
options: const ChannelMediaOptions());
}
void _leaveChannel() async {
await _engine.leaveChannel();
}
Future<void> _startTranscoding({bool isRemoteUser = false}) async {
final uid = int.tryParse(_channelUidController.text);
if (uid == null) return;
if (_isStreaming && !isRemoteUser) return;
final streamUrl = _rtmpUrlController.text;
_isStreaming = true;
final List<TranscodingUser> transcodingUsers = [
TranscodingUser(
uid: uid,
x: 0,
y: 0,
width: 360,
height: 640,
audioChannel: 0,
alpha: 1.0,
)
];
int width = 360;
int height = 640;
if (isRemoteUser) {
transcodingUsers.add(TranscodingUser(
uid: _remoteUid,
x: 360,
y: 0,
width: 360,
height: 640,
audioChannel: 0,
alpha: 1.0,
));
width = 720;
height = 640;
}
final liveTranscoding = LiveTranscoding(
transcodingUsers: transcodingUsers,
userCount: transcodingUsers.length,
width: width,
height: height,
videoBitrate: 400,
videoCodecProfile: VideoCodecProfileType.videoCodecProfileHigh,
videoGop: 30,
videoFramerate: 15,
lowLatency: false,
audioSampleRate: AudioSampleRateType.audioSampleRate44100,
audioBitrate: 48,
audioChannels: 1,
audioCodecProfile: AudioCodecProfileType.audioCodecProfileLcAac,
);
try {
await _engine.startRtmpStreamWithTranscoding(
url: streamUrl, transcoding: liveTranscoding);
} catch (e) {
logSink.log('startRtmpStreamWithTranscoding 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),
),
),
if (_remoteUid != 0)
Align(
alignment: Alignment.topLeft,
child: SizedBox(
width: 120,
height: 120,
child: _remoteUid != 0
? AgoraVideoView(
controller: VideoViewController.remote(
rtcEngine: _engine,
canvas: VideoCanvas(uid: _remoteUid),
connection: RtcConnection(
channelId: _channelIdController.text),
))
: Container(
color: Colors.grey[200],
),
),
),
],
);
},
actionsBuilder: (context, isLayoutHorizontal) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
TextField(
controller: _channelIdController,
decoration: const InputDecoration(hintText: 'Channel ID'),
),
TextField(
controller: _channelUidController,
decoration: const InputDecoration(
hintText: 'Enter channel uid',
),
),
TextField(
controller: _rtmpUrlController,
decoration: const InputDecoration(hintText: 'Input rtmp url'),
),
Row(
children: [
Expanded(
child: ElevatedButton(
onPressed: isJoined ? _leaveChannel : _joinChannel,
child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
),
)
],
),
],
);
},
);
}
}