This repository was archived by the owner on Apr 21, 2025. It is now read-only.
File tree 3 files changed +5
-2
lines changed
flutter/flutter_platform_interface
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.1
2
+ - Fixes the signature of getMediaInformation method
3
+
1
4
## 0.2.0
2
5
- Implements execute methods
3
6
- Merges existing getSafParameter methods into a single method with a new openMode parameter
Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ class MethodChannelFFmpegKit extends FFmpegKitPlatform {
356
356
Future <Map <dynamic , dynamic >?> mediaInformationSessionGetMediaInformation (
357
357
int ? sessionId) async =>
358
358
_channel.invokeMethod <Map <dynamic , dynamic >>(
359
- 'getMediaInformation( ' , {'sessionId' : sessionId});
359
+ 'getMediaInformation' , {'sessionId' : sessionId});
360
360
361
361
@override
362
362
Future <String ?> getPackageName () async =>
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ issue_tracker: https://github.com/tanersener/ffmpeg-kit/issues
5
5
homepage : https://github.com/tanersener/ffmpeg-kit
6
6
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
7
7
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
8
- version : 0.2.0
8
+ version : 0.2.1
9
9
10
10
environment :
11
11
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments