I'm trying to record a short video using the camera ANE from Distriqt and one of the params for startRecordingVideo() is "path".
I can't figure out what a valid path would be when saving on iOS (and probably Android when I get to it)
Unfortunately the documentation is somewhat lacking...
An invalid path stops the device from even starting to record.
OK that was me just having a stupid 5 min...
var file:File = File.applicationStorageDirectory.resolvePath("sample.mp4");
Camera.instance.startRecordingVideo(file.nativePath);