objective c - Can I get video clip/edit function as iOS Photos app? -


like picture uploaded, have app want use same function photos app provided.

it should have these:

  1. edit saved video, resize area,such cut top half of it's view.

  2. drag resize new time interval video, such 30 second video ,clip 16 second.

thanks lot!

screen shot

just try this

if uiimagepickercontroller.issourcetypeavailable(uiimagepickercontrollersourcetype.photolibrary)    {       let imagepicker = uiimagepickercontroller()       imagepicker.delegate = self       imagepicker.sourcetype = .photolibrary       imagepicker.mediatypes = [kuttypemovie string]       imagepicker.videomaximumduration = 300       imagepicker.videoquality = .type640x480       imagepicker.allowsediting = true       presentviewcontroller(imagepicker, animated: true, completion: nil)    } 

Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -