누르면 image Picker를 통해 포토 라이브러리에서 동영상을 불러오는 버튼이 있는데요,
포토라이브러리에서 원하는 영상을 선택 후,
영상 길이를 원하는 만큼 조절한 뒤 Done 버튼을 누르면
포토 라이브러리에 해당 영상이 (조절한 길이만큼)복제되어 있네요ㅠㅠ
@IBAction func loadVideoButtonTapped(_ sender: UIButton) {
if (UIImagePickerController.isSourceTypeAvailable(.photoLibrary)) {
imagePicker.sourceType = .photoLibrary
imagePicker.mediaTypes = [kUTTypeMovie as String]
imagePicker.allowsEditing = true
present(imagePicker, animated: true, completion: nil)
} else{
libraryAlert("Photo album inaccessable", message: "Application cannot access the photo album.")
}
}