screen recording ios/android

0 votes
asked Aug 17, 2017 by memorion (200 points)
how to save the screen recording to de camera roll?

1 Answer

0 votes
answered Aug 17, 2017 by samtae (940 points)
the path:

string path_root = Application.persistentDataPath + "/";
            if (Application.platform == RuntimePlatform.Android)
                path_root = "/sdcard/Movies/";
            ARBuilder.Instance.RecorderBehaviour.OutputFile = path_root + "EasyAR_Recording_" + System.DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss") + ".mp4";
commented Aug 21, 2017 by memorion (200 points)
i testing on iOS 10, where i can see the video?
commented Sep 7, 2017 by kenn (18,750 points)
Change the path to where you can see, or, pull the whole app data out of you phone using XCode, the video is there.
commented Sep 28, 2017 by memorion (200 points)
i pulled out but there is nothing...

 the logic and common sense is the video can save it on camera roll
Welcome to EasyAR SDK Q&A, where you can ask questions and receive answers from other members of the community.
...