getSafParameterForWrite static method

Future<String?> getSafParameterForWrite(
  1. String uriString
)

Converts the given Structured Access Framework Uri ("content:…") into an output url that can be used in FFmpeg and FFprobe commands.

Note that this method is Android only. It will fail if called on other platforms. It also requires API Level ≥ 19. On older API levels it returns an empty url.

Implementation

static Future<String?> getSafParameterForWrite(String uriString) async {
  try {
    await init();
    return _platform.ffmpegKitConfigGetSafParameter(uriString, "w");
  } on PlatformException catch (e, stack) {
    print("Plugin getSafParameterForWrite error: ${e.message}");
    return Future.error("getSafParameterForWrite failed.", stack);
  }
}