Record with audio and update filename

This commit is contained in:
Santiago Lo Coco 2024-11-10 19:27:12 +01:00
parent 28b99bda97
commit 5b6116e943
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ public class VideoCaptureHandler : MonoBehaviour
this.videoCapture.StartVideoModeAsync( this.videoCapture.StartVideoModeAsync(
cameraParameters, cameraParameters,
VideoCapture.AudioState.None, VideoCapture.AudioState.ApplicationAndMicAudio,
OnStartedVideoCaptureMode OnStartedVideoCaptureMode
); );
} }
@ -115,7 +115,7 @@ public class VideoCaptureHandler : MonoBehaviour
{ {
if (result.success) if (result.success)
{ {
string filename = string.Format("WebView_{0}.mp4", Time.time); string filename = string.Format("WebView_{0}.mp4", DateTime.UtcNow.ToString("yyyy-MM-ddTHHmmssZ"));
string filepath = Path.Combine(Application.persistentDataPath, filename); string filepath = Path.Combine(Application.persistentDataPath, filename);
Debug.Log("Saving Video to: " + filepath); Debug.Log("Saving Video to: " + filepath);