decodeFrame static method

Future<void> decodeFrame(
  1. String source,
  2. String target,
  3. int width,
  4. int height
)

Decode a single H.264 frame (IDR) from source into the target path. The decoder currently requires knowledge of the source frames width and height.

This Future will throw an error if decoding fails.

Implementation

static Future<void> decodeFrame(
    String source, String target, int width, int height) async {
  final params = {
    "source": source,
    "target": target,
    "width": width,
    "height": height,
  };

  await _channel.invokeMethod('decode', params);
}