-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmain.dart
398 lines (358 loc) · 13.4 KB
/
main.dart
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_ve_sdk/audio_browser.dart';
import 'package:image_picker/image_picker.dart';
void main() {
runApp(MyApp());
}
/// The entry point for Audio Browser implementation
@pragma('vm:entry-point')
void audioBrowser() => runApp(AudioBrowserWidget());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Banuba Video and Photo Editor SDK Sample'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({
Key? key,
this.title = '',
}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
// Set Banuba license token for Video and Photo Editor SDK
static const String LICENSE_TOKEN = ;
// For Video Editor
static const methodInitVideoEditor = 'initVideoEditor';
static const methodStartVideoEditor = 'startVideoEditor';
static const methodStartVideoEditorPIP = 'startVideoEditorPIP';
static const methodStartVideoEditorTrimmer = 'startVideoEditorTrimmer';
static const methodReleaseVideoEditor = 'releaseVideoEditor';
static const methodDemoPlayExportedVideo = 'playExportedVideo';
static const argExportedVideoFile = 'argExportedVideoFilePath';
static const argExportedVideoCoverPreviewPath = 'argExportedVideoCoverPreviewPath';
// For Photo Editor
static const methodInitPhotoEditor = 'initPhotoEditor';
static const methodStartPhotoEditor = 'startPhotoEditor';
static const argExportedPhotoFile = 'argExportedPhotoFilePath';
static const platformChannel = MethodChannel('banubaSdkChannel');
String _errorMessage = '';
Future<void> _initPhotoEditor() async {
if (Platform.isAndroid){
await _releaseVideoEditor();
}
await platformChannel.invokeMethod(methodInitPhotoEditor, LICENSE_TOKEN);
}
Future<void> _startPhotoEditor() async {
try {
await _initPhotoEditor();
dynamic result = await platformChannel.invokeMethod(methodStartPhotoEditor);
debugPrint('Received Photo Editor result');
// You can pass any values from platform to Flutter as a result.
if (result is Map) {
final exportedPhotoFilePath = result[argExportedPhotoFile];
debugPrint('Exported photo file = $exportedPhotoFilePath');
}
} on PlatformException catch (e) {
_handlePlatformException(e);
}
}
Future<void> _initVideoEditor() async {
await platformChannel.invokeMethod(methodInitVideoEditor, LICENSE_TOKEN);
}
Future<void> _startVideoEditorDefault() async {
try {
await _initVideoEditor();
final result = await platformChannel.invokeMethod(methodStartVideoEditor);
_handleVideoEditorResult(result);
} on PlatformException catch (e) {
_handlePlatformException(e);
}
}
Future<void> _startVideoEditorPIP() async {
try {
await _initVideoEditor();
// Use your implementation to provide correct video file path to start Video Editor SDK in PIP mode
final ImagePicker _picker = ImagePicker();
final XFile? file = await _picker.pickVideo(source: ImageSource.gallery);
if (file == null) {
debugPrint('Cannot open video editor with PIP - video was not selected!');
} else {
debugPrint('Open video editor in pip with video = ${file.path}');
final result = await platformChannel.invokeMethod(methodStartVideoEditorPIP, file.path);
_handleVideoEditorResult(result);
}
} on PlatformException catch (e) {
_handlePlatformException(e);
}
}
Future<void> _startVideoEditorTrimmer() async {
try {
await _initVideoEditor();
// Use your implementation to provide correct video file path to start Video Editor SDK in Trimmer mode
final ImagePicker _picker = ImagePicker();
final XFile? file = await _picker.pickVideo(source: ImageSource.gallery);
if (file == null) {
debugPrint('Cannot open video editor with Trimmer - video was not selected!');
} else {
debugPrint('Open video editor in trimmer with video = ${file.path}');
final result = await platformChannel.invokeMethod(methodStartVideoEditorTrimmer, file.path);
_handleVideoEditorResult(result);
}
} on PlatformException catch (e) {
_handlePlatformException(e);
}
}
Future<void> _releaseVideoEditor() async {
try {
await platformChannel.invokeMethod(methodReleaseVideoEditor);
} on PlatformException catch (e) {
_handlePlatformException(e);
}
}
// Handle exceptions thrown on Android, iOS platform while starting Video and Photo Editor SDK
void _handlePlatformException(PlatformException exception) {
debugPrint("Error: '${exception.message}'.");
String errorMessage = '';
switch (exception.code) {
case 'ERR_SDK_LICENSE_REVOKED':
errorMessage =
'The license is revoked or expired. Please contact Banuba https://www.banuba.com/support';
break;
case 'ERR_SDK_NOT_INITIALIZED':
errorMessage =
'Banuba Video and Photo Editor SDK is not initialized: license token is unknown or incorrect.\nPlease check your license token or contact Banuba';
break;
case 'ERR_MISSING_EXPORT_RESULT':
errorMessage = 'Missing video export result!';
break;
case 'ERR_START_PIP_MISSING_VIDEO':
errorMessage = 'Cannot start video editor in PIP mode: passed video is missing or invalid';
break;
case 'ERR_START_TRIMMER_MISSING_VIDEO':
errorMessage = 'Cannot start video editor in trimmer mode: passed video is missing or invalid';
break;
case 'ERR_EXPORT_PLAY_MISSING_VIDEO':
errorMessage = 'Missing video file to play';
break;
default:
errorMessage = 'unknown error';
}
_errorMessage = errorMessage;
setState(() {});
}
void _handleVideoEditorResult(dynamic result) {
debugPrint('Received Video Editor result');
// You can use any kind of export result passed from platform.
// Map is used for this sample to demonstrate playing exported video file.
if (result is Map) {
final exportedVideoFilePath = result[argExportedVideoFile];
debugPrint('Exported video = $exportedVideoFilePath');
// Use video cover preview to meet your requirements
final exportedVideoCoverPreviewPath = result[argExportedVideoCoverPreviewPath];
debugPrint('Exported video preview = $exportedVideoCoverPreviewPath');
_showConfirmation(context, "Play exported video file?", () {
platformChannel.invokeMethod(methodDemoPlayExportedVideo, exportedVideoFilePath);
});
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Expanded(
flex: 1,
child: Center(
child: const Padding(
padding: EdgeInsets.all(15.0),
child: Text(
'The sample demonstrates how to run Banuba Video and Photo Editor SDK with Flutter',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 17.0,
),
),
),
),
),
Expanded(
flex: 2,
child: Column(
children: [
Padding(
padding: EdgeInsets.all(15.0),
child: Text(
_errorMessage,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 14.0,
fontWeight: FontWeight.bold,
color: Colors.redAccent,
),
),
),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.green,
shadowColor: Colors.greenAccent,
elevation: 10,
fixedSize: const Size(280, 50),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () => _startPhotoEditor(),
child: const Text(
'Open Photo Editor',
style: TextStyle(
fontSize: 14.0,
),
),
),
SizedBox(height: 24),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.blueAccent,
shadowColor: Colors.blueGrey,
elevation: 10,
fixedSize: const Size(280, 50),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () => _startVideoEditorDefault(),
child: const Text(
'Open Video Editor - Default',
style: TextStyle(
fontSize: 14.0,
),
),
),
SizedBox(height: 20),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.blueAccent,
shadowColor: Colors.blueGrey,
elevation: 10,
fixedSize: const Size(280, 50),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () => _startVideoEditorPIP(),
child: const Text(
'Open Video Editor - PIP',
style: TextStyle(
fontSize: 14.0,
),
),
),
SizedBox(height: 20),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.blueAccent,
shadowColor: Colors.blueGrey,
elevation: 10,
fixedSize: const Size(280, 50),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () => _startVideoEditorTrimmer(),
child: const Text(
'Open Video Editor - Trimmer',
style: TextStyle(
fontSize: 14.0,
),
),
),
],
),
),
],
),
),
);
}
void _showConfirmation(
BuildContext context, String message, VoidCallback block) {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text(message),
actions: [
Row(
children: [
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.red,
shadowColor: Colors.redAccent,
elevation: 10,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () => {Navigator.pop(context)},
child: const Text(
'Cancel',
style: TextStyle(
fontSize: 14.0,
),
),
),
),
SizedBox(width: 10),
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.green,
shadowColor: Colors.greenAccent,
elevation: 10,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
),
),
onPressed: () {
Navigator.pop(context);
block.call();
},
child: const Text(
'Ok',
style: TextStyle(
fontSize: 14.0,
),
),
),
),
],
)
],
),
);
}
}