Record with audio and update filename
This commit is contained in:
parent
28b99bda97
commit
5b6116e943
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue