updated save function readme

This commit is contained in:
Nicolas Gonzalez 2018-11-06 09:01:10 -06:00
parent 89ac8d93c3
commit dd1c6867ad

View File

@ -902,7 +902,7 @@ Platforms: Android ExoPlayer, Android MediaPlayer, iOS
#### save #### save
`save(): Promise` `save(): Promise`
Save video with current filter prop. Returns promise. Save video to your Photos with current filter prop. Returns promise.
Example: Example:
``` ```
@ -910,6 +910,18 @@ let response = await this.save();
let path = response.uri; let path = response.uri;
``` ```
Notes:
- Currently only supports highest quality export
- Currently only supports MP4 export
- Currently only supports exporting to user's cache directory with the file name "Filter.mp4"
- User will need to remove the saved video through their Photos app
Future:
- Will support multiple qualities through options
- Will support more formats in the future through options
- Will support custom directory and file name through options
Platforms: iOS Platforms: iOS
#### seek() #### seek()