Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit 2febafd

Browse files
committed
fix the signature of getMediaInformation method
1 parent 8a00606 commit 2febafd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

flutter/flutter_platform_interface/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.2.1
2+
- Fixes the signature of getMediaInformation method
3+
14
## 0.2.0
25
- Implements execute methods
36
- Merges existing getSafParameter methods into a single method with a new openMode parameter

flutter/flutter_platform_interface/lib/method_channel_ffmpeg_kit_flutter.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class MethodChannelFFmpegKit extends FFmpegKitPlatform {
356356
Future<Map<dynamic, dynamic>?> mediaInformationSessionGetMediaInformation(
357357
int? sessionId) async =>
358358
_channel.invokeMethod<Map<dynamic, dynamic>>(
359-
'getMediaInformation(', {'sessionId': sessionId});
359+
'getMediaInformation', {'sessionId': sessionId});
360360

361361
@override
362362
Future<String?> getPackageName() async =>

flutter/flutter_platform_interface/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ issue_tracker: https://github.com/tanersener/ffmpeg-kit/issues
55
homepage: https://github.com/tanersener/ffmpeg-kit
66
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
77
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
8-
version: 0.2.0
8+
version: 0.2.1
99

1010
environment:
1111
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)