shahen94 / react-native-video-processing

Native Video editing/trimming/compressing :movie_camera: library for React-Native
https://shahen94.github.io/react-native-video-processing/
MIT License
1.25k stars 327 forks source link

Feature: Support photos:// URI (iOS Photos Framework) #36

Open flybayer opened 7 years ago

flybayer commented 7 years ago

I'd like to use react-native-photos-framework as a video picker in conjunction with this library.

Problem: That library uses iOS Photos Framework, so the URI is photos://. Trying to feed that into this library will crash the app.

From Apple: screen shot 2017-02-26 at 9 40 28 am

shahen94 commented 7 years ago

@flybayer currently library doesn't support photos:// URI, it's a new feature , we doesn't support photos library because you can't edit remote videos (ex. From iCloud) . assets library gives only videos from users devices, that's why it's good for us, anyway we can also use photos URI but only local videos.

flybayer commented 7 years ago

This issue has some helpful info: https://github.com/wkh237/react-native-fetch-blob/issues/218

shahen94 commented 7 years ago

@flybayer Thank you ! Also i found one helpful example from stackoverflow

I'm quite busy in these days. i'll back to this issue when i'll have free time.