You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I Started to use ARVideokit in my project but can you help me to preview the video inapp before saving to photo library. I want to add the share button while previewing the video inside the app and then add a save button to save it to photo library
The text was updated successfully, but these errors were encountered:
Use the closure to get the URL and pass it to an AVPlayer:
func tapButton(isRecording: Bool) {
if isRecording {
recorder?.record()
} else {
recorder?.stop({ (url) in
DispatchQueue.main.async {
//do something with the url, e.g. pass it to an AVPlayer here
}
})
}
}
Hello
I Started to use ARVideokit in my project but can you help me to preview the video inapp before saving to photo library. I want to add the share button while previewing the video inside the app and then add a save button to save it to photo library
The text was updated successfully, but these errors were encountered: