From ca9ab65013cb9b3edf5ed929145e23fbf0262641 Mon Sep 17 00:00:00 2001 From: Julian Gerhards <96697201+juliangerhards@users.noreply.github.com> Date: Tue, 5 Apr 2022 17:33:52 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c7718a1..3e4c797 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # VideoKit +VideoKit is a high level layer on top of AVKit + How it works ```swift @@ -9,6 +11,8 @@ let config = VideoKit.Config(.preset1920x1080, limitLength: 180, limitFPS: 30, l VideoKit.mutate(videoUrl: YOUR_VIDEO_URL, config: config) { result in switch result { case .success(let videoUrl): + // DO SOMETHING WITH YOUR VIDEO + break case .error(let errorString): print(errorString) }