codec property

String get codec

Implementation

String get codec {
  final cc = get(CAP_PROP_FOURCC).toInt();
  final res = [cc & 0XFF, (cc & 0XFF00) >> 8, (cc & 0XFF0000) >> 16, (cc & 0XFF000000) >> 24];
  return ascii.decode(res);
}