diff --git a/Assets/Scripts/VideoCaptureHandler.cs b/Assets/Scripts/VideoCaptureHandler.cs index 4339770..e6adf31 100644 --- a/Assets/Scripts/VideoCaptureHandler.cs +++ b/Assets/Scripts/VideoCaptureHandler.cs @@ -142,7 +142,11 @@ namespace WebViewStream } } +#if WINDOWS_UWP && !UNITY_EDITOR + private async void OnStartedVideoCaptureMode(VideoCapture.VideoCaptureResult result) +#else private void OnStartedVideoCaptureMode(VideoCapture.VideoCaptureResult result) +#endif { if (result.success) { @@ -150,7 +154,12 @@ namespace WebViewStream "WebView_{0}.mp4", DateTime.UtcNow.ToString("yyyy-MM-ddTHHmmssZ") ); +#if WINDOWS_UWP && !UNITY_EDITOR + StorageLibrary videosLibrary = await StorageLibrary.GetLibraryAsync(KnownLibraryId.Videos); + string filepath = Path.Combine(videosLibrary.SaveFolder.Path, filename); +#else string filepath = Path.Combine(Application.persistentDataPath, filename); +#endif Debug.Log("Saving video to: " + filepath); videoCapture.StartRecordingAsync(filepath, OnStartedRecordingVideo); diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 9edf22e..53d7bb0 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -676,6 +676,7 @@ PlayerSettings: syncCapabilities: 1 platformCapabilities: WindowsStoreApps: + VideosLibrary: True GazeInput: True SpatialPerception: True InternetClient: True