LMSaveVideoServiceDelegate

Objective-C

@protocol LMSaveVideoServiceDelegate <NSObject>

Swift

protocol LMSaveVideoServiceDelegate : NSObjectProtocol

Delegate that should be informed about events inside save video service

  • Processing of frames has began. Can be called NOT from main thread

    Declaration

    Objective-C

    - (void)videoFlushingWillBegin;

    Swift

    func videoFlushingWillBegin()
  • When all frames are merged into single mp4 video file or in case error aapeared while merging. Can be called NOT from main thread

    Declaration

    Objective-C

    - (void)videoFlushingDidEndWithError:(NSError *)error;

    Swift

    func videoFlushingDidEndWithError(_ error: (any Error)!)