5

I'm downloading video files to application documents directory and i need to copy my downloaded videos to camera roll. How can i do this with react native?

Thanks

Prath Prat
  • 71
  • 4
  • It seems like the CameraRoll API is good for pictures, but not as good for videos https://facebook.github.io/react-native/docs/cameraroll – Qiming May 16 '16 at 19:33
  • I answered this question on this https://stackoverflow.com/questions/35258483/save-video-to-cameraroll-react-native/58713657#58713657 – Cya Nov 05 '19 at 14:41

1 Answers1

0

The CameraRoll API would be the place to have a look at, maybe the saveimagewithtag method works for you. Otherwise, there is no built-in possibility and you would have to implement it on your own.

Daniel Schmidt
  • 11,605
  • 5
  • 38
  • 70