···2121 Future<List<Uint8List>> getKeyFrames(KeyFramesConfigs configs);
22222323 /// Render a video and return the bytes. Use for small/short videos.
2424- Future<Uint8List> renderVideo(RenderVideoModel model);
2424+ Future<Uint8List> renderVideo(VideoRenderData model);
25252626 /// Render a video directly to a file path to avoid RAM pressure.
2727- Future<String> renderVideoToFile(String outputPath, RenderVideoModel model);
2727+ Future<String> renderVideoToFile(String outputPath, VideoRenderData model);
28282929 /// Stream progress updates for a given render task id.
3030 ///
3131- /// The caller is responsible to pass the same [RenderVideoModel.id] or
3131+ /// The caller is responsible to pass the same [VideoRenderData.id] or
3232 /// [ThumbnailConfigs.id]/[KeyFramesConfigs.id].
3333 Stream<ProgressModel> progressStream();
3434