浏览 SDKs · Flutter
SDKsFlutter

创建视频消息

使用 Flutter SDK 从平台路径创建视频消息。

复制
final message = await OpenIM.iMManager.messageManager.createVideoMessage(
  videoPath: videoPath,
  videoType: 'video/mp4',
  duration: durationSeconds,
  snapshotPath: snapshotPath,
);

视频和快照路径必须可读,时长单位为秒。Future 只创建待发送对象。