getBgm static method

Future<String?> getBgm(
  1. String videoPath
)

得到视频的背景声音

Implementation

static Future<String?>  getBgm(String videoPath) async {
  final String? _bgmpath = await _channel.invokeMethod('getBgm',{'videoPath': videoPath} );
  return _bgmpath;
}