ffmpegOption property
String
get
ffmpegOption
test
Implementation
String get ffmpegOption {
switch (this) {
case video:
return '-vn';
case audio:
return '-an';
case subtitle:
return '-sn';
case data:
return '-dn';
}
}