yasirkula / UnityNativeShare

A Unity plugin to natively share files (images, videos, documents, etc.) and/or plain text on Android & iOS
MIT License
891 stars 131 forks source link

Video Share #17

Closed parth521 closed 6 years ago

parth521 commented 6 years ago

i am trying share video but how to get video path without browsing it.

yasirkula commented 6 years ago

If you are trying to share the video that you've just saved to gallery and if you are using NativeGallery plugin to save the video, then on Android, you can get the path of the video by calling NativeGallery.GetSavePath (change its visibility to public) before calling SaveVideoToGallery. On iOS, AFAIK, it is not possible to get the path of a video in Photos. You have to keep a separate copy of the video in e.g. Application.temporaryCachePath and share it, instead.

parth521 commented 6 years ago

thanks