skipFrames static method

String skipFrames(
  1. bool enable
)

Skip frames Enables framedropping on MPEG2 stream. Framedropping occurs when your computer is not powerful enough

Implementation

static String skipFrames(bool enable) {
  return enable ? '--skip-frames' : '--no-skip-frames';
}