saveWAVE static method

Future<bool> saveWAVE(
  1. String srcPath,
  2. String destPath, {
  3. int channel = 1,
  4. int fmt = 16,
  5. int rate = 8000,
})

Implementation

static Future<bool> saveWAVE(String srcPath, String destPath,
    {int channel = 1, int fmt = 16, int rate = 8000}) async {
  return await app_player_channel.invokeMethod(
      "app_player_save_wave", [srcPath, destPath, channel, fmt, rate]);
}