Save recording to the Videos folder

This commit is contained in:
Santiago Lo Coco 2024-11-19 00:27:37 +01:00
parent 8df0a6e7dd
commit e9c07eac9c
2 changed files with 10 additions and 0 deletions

View File

@ -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);

View File

@ -676,6 +676,7 @@ PlayerSettings:
syncCapabilities: 1
platformCapabilities:
WindowsStoreApps:
VideosLibrary: True
GazeInput: True
SpatialPerception: True
InternetClient: True