123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- /****************************************************************************
- * Copyright 2019 Nreal Techonology Limited. All rights reserved.
- *
- * This file is part of NRSDK.
- *
- * https://www.nreal.ai/
- *
- *****************************************************************************/
- namespace NRKernal.Record
- {
- using UnityEngine;
- using NRKernal;
- using System;
- using System.Collections.Generic;
- /// <summary>
- /// Records a video from the MR images directly to disk. MR images comes from rgb camera or rgb
- /// camera image and virtual image blending. The final video recording will be stored on the file
- /// system in the MP4 format. </summary>
- public class NRVideoCapture : IDisposable
- {
- /// <summary> Default constructor. </summary>
- public NRVideoCapture()
- {
- IsRecording = false;
- }
- /// <summary> Finalizer. </summary>
- ~NRVideoCapture()
- {
- }
- /// <summary> A list of all the supported device resolutions for recording videos. </summary>
- /// <value> The supported resolutions. </value>
- public static IEnumerable<Resolution> SupportedResolutions
- {
- get
- {
- NativeResolution rgbResolution = new NativeResolution(1280, 720);
- if (NRDevice.Subsystem.IsFeatureSupported(NRSupportedFeature.NR_FEATURE_RGB_CAMERA))
- rgbResolution = NRFrame.GetDeviceResolution(NativeDevice.RGB_CAMERA);
- Resolution stand_resolution = new Resolution()
- {
- width = rgbResolution.width,
- height = rgbResolution.height,
- refreshRate = NativeConstants.RECORD_FPS_DEFAULT,
- };
- yield return stand_resolution;
- Resolution low_resolution = new Resolution()
- {
- width = stand_resolution.width / 2,
- height = stand_resolution.height / 2,
- refreshRate = NativeConstants.RECORD_FPS_DEFAULT,
- };
- yield return low_resolution;
- Resolution high_resolution = new Resolution()
- {
- width = stand_resolution.width * 3 / 2,
- height = stand_resolution.height * 3 / 2,
- refreshRate = NativeConstants.RECORD_FPS_DEFAULT,
- };
- yield return high_resolution;
- }
- }
- /// <summary>
- /// Indicates whether or not the VideoCapture instance is currently recording video. </summary>
- /// <value> True if this object is recording, false if not. </value>
- public bool IsRecording { get; private set; }
- /// <summary> Context for the capture. </summary>
- private FrameCaptureContext m_CaptureContext;
- /// <summary> Gets the context. </summary>
- /// <returns> The context. </returns>
- public FrameCaptureContext GetContext()
- {
- return m_CaptureContext;
- }
- /// <summary> Gets the preview texture. </summary>
- /// <value> The preview texture. </value>
- public Texture PreviewTexture
- {
- get
- {
- return m_CaptureContext?.PreviewTexture;
- }
- }
- /// <summary> Creates an asynchronous. </summary>
- /// <param name="showHolograms"> True to show, false to hide the holograms.</param>
- /// <param name="onCreatedCallback"> The on created callback.</param>
- public static void CreateAsync(bool showHolograms, OnVideoCaptureResourceCreatedCallback onCreatedCallback)
- {
- NRVideoCapture capture = new NRVideoCapture();
- capture.m_CaptureContext = FrameCaptureContextFactory.Create();
- onCreatedCallback?.Invoke(capture);
- }
- /// <summary>
- /// Returns the supported frame rates at which a video can be recorded given a resolution. </summary>
- /// <param name="resolution"> A recording resolution.</param>
- /// <returns> The frame rates at which the video can be recorded. </returns>
- public static IEnumerable<int> GetSupportedFrameRatesForResolution(Resolution resolution)
- {
- yield return NativeConstants.RECORD_FPS_DEFAULT;
- }
- /// <summary> Dispose must be called to shutdown the PhotoCapture instance. </summary>
- public void Dispose()
- {
- if (m_CaptureContext != null)
- {
- m_CaptureContext.Release();
- m_CaptureContext = null;
- }
- }
- /// <summary> Starts recording asynchronous. </summary>
- /// <param name="filename"> Filename of the file.</param>
- /// <param name="onStartedRecordingVideoCallback"> The on started recording video callback.</param>
- public void StartRecordingAsync(string filename, OnStartedRecordingVideoCallback onStartedRecordingVideoCallback)
- {
- float volumeFactorMic = 1.0f;
- float volumeFactorApp = 1.0f;
- if (NRDevice.Subsystem.GetDeviceType() == NRDeviceType.NrealLight)
- {
- volumeFactorMic = NativeConstants.RECORD_VOLUME_MIC;
- volumeFactorApp = NativeConstants.RECORD_VOLUME_APP;
- }
- StartRecordingAsync(filename, onStartedRecordingVideoCallback, volumeFactorMic, volumeFactorApp);
- }
- /// <summary> Starts recording asynchronous. </summary>
- /// <param name="filename"> Filename of the file.</param>
- /// <param name="onStartedRecordingVideoCallback"> The on started recording video callback.</param>
- /// <param name="volumeFactorMic"> The volume factor of mic.</param>
- /// <param name="volumeFactorApp"> The volume factor of application.</param>
- public void StartRecordingAsync(string filename, OnStartedRecordingVideoCallback onStartedRecordingVideoCallback, float volumeFactorMic, float volumeFactorApp)
- {
- NRDebugger.Info("[VideoCapture] StartRecordingAsync: IsRecording={0}, volFactorMic={1}, volFactorApp={2}", IsRecording, volumeFactorMic, volumeFactorApp);
- var result = new VideoCaptureResult();
- if (IsRecording)
- {
- result.resultType = CaptureResultType.UnknownError;
- onStartedRecordingVideoCallback?.Invoke(result);
- }
- else
- {
- try
- {
- VideoEncoder encoder = m_CaptureContext.GetEncoder() as VideoEncoder;
- if (encoder != null)
- {
- encoder.AdjustVolume(RecorderIndex.REC_MIC, volumeFactorMic);
- encoder.AdjustVolume(RecorderIndex.REC_APP, volumeFactorApp);
- }
-
- var behaviour = m_CaptureContext.GetBehaviour();
- ((NRRecordBehaviour)behaviour).SetOutPutPath(filename);
- m_CaptureContext.StartCapture();
- IsRecording = true;
- result.resultType = CaptureResultType.Success;
- onStartedRecordingVideoCallback?.Invoke(result);
- }
- catch (Exception ex)
- {
- NRDebugger.Warning("[VideoCapture] StartRecordingAsync: {0}\n{1}", ex.Message, ex.StackTrace);
- result.resultType = CaptureResultType.UnknownError;
- onStartedRecordingVideoCallback?.Invoke(result);
- throw;
- }
- }
- }
- /// <summary> Starts video mode asynchronous. </summary>
- /// <param name="setupParams"> Options for controlling the setup.</param>
- /// <param name="onVideoModeStartedCallback"> The on video mode started callback.</param>
- /// <param name="autoAdaptBlendMode"> Auto adaption for BlendMode based on supported feature on current device.</param>
- public void StartVideoModeAsync(CameraParameters setupParams, OnVideoModeStartedCallback onVideoModeStartedCallback, bool autoAdaptBlendMode = false)
- {
- if (autoAdaptBlendMode)
- {
- var blendMode = m_CaptureContext.AutoAdaptBlendMode(setupParams.blendMode);
- if (blendMode != setupParams.blendMode)
- {
- NRDebugger.Warning("[VideoCapture] AutoAdaptBlendMode : {0} => {1}", setupParams.blendMode, blendMode);
- setupParams.blendMode = blendMode;
- }
- }
- if (Application.isEditor || Application.platform != RuntimePlatform.Android)
- {
- StartVideoMode(setupParams, onVideoModeStartedCallback);
- return;
- }
-
- NRDebugger.Info("[VideoCapture] StartVideoModeAsync: audioState={0}, blendMode={1}", setupParams.audioState, setupParams.blendMode);
- bool recordMic = setupParams.CaptureAudioMic;
- bool recordApp = setupParams.CaptureAudioApplication;
- if (recordApp)
- {
- NRAndroidPermissionsManager.GetInstance().RequestAndroidPermission("android.permission.RECORD_AUDIO").ThenAction((requestResult) =>
- {
- if (requestResult.IsAllGranted)
- {
- NRAndroidPermissionsManager.GetInstance().RequestScreenCapture().ThenAction((AndroidJavaObject mediaProjection) =>
- {
- if (mediaProjection != null)
- {
- setupParams.mediaProjection = mediaProjection;
- StartVideoMode(setupParams, onVideoModeStartedCallback);
- }
- else
- {
- NRDebugger.Error("[VideoCapture] Screen capture is denied by user.");
- var result = new VideoCaptureResult();
- result.resultType = CaptureResultType.UnknownError;
- onVideoModeStartedCallback?.Invoke(result);
- NRSessionManager.Instance.OprateInitException(new NRPermissionDenyError(NativeConstants.ScreenCaptureDenyErrorTip));
- }
- });
- }
- else {
- NRDebugger.Error("[VideoCapture] Record audio need the permission of 'android.permission.RECORD_AUDIO'.");
- var result = new VideoCaptureResult();
- result.resultType = CaptureResultType.UnknownError;
- onVideoModeStartedCallback?.Invoke(result);
- NRSessionManager.Instance.OprateInitException(new NRPermissionDenyError(NativeConstants.AudioPermissionDenyErrorTip));
- }
- });
- }
- else if (recordMic)
- {
- NRAndroidPermissionsManager.GetInstance().RequestAndroidPermission("android.permission.RECORD_AUDIO").ThenAction((requestResult) =>
- {
- if (requestResult.IsAllGranted)
- {
- StartVideoMode(setupParams, onVideoModeStartedCallback);
- }
- else {
- NRDebugger.Error("[VideoCapture] Record audio need the permission of 'android.permission.RECORD_AUDIO'.");
- var result = new VideoCaptureResult();
- result.resultType = CaptureResultType.UnknownError;
- onVideoModeStartedCallback?.Invoke(result);
- NRSessionManager.Instance.OprateInitException(new NRPermissionDenyError(NativeConstants.AudioPermissionDenyErrorTip));
- }
- });
- }
- else
- {
- StartVideoMode(setupParams, onVideoModeStartedCallback);
- }
- }
- private void StartVideoMode(CameraParameters setupParams, OnVideoModeStartedCallback onVideoModeStartedCallback, bool autoAdaptBlendMode = false)
- {
- setupParams.camMode = CamMode.VideoMode;
- setupParams.hologramOpacity = 1;
- if (autoAdaptBlendMode)
- {
- var blendMode = m_CaptureContext.AutoAdaptBlendMode(setupParams.blendMode);
- if (blendMode != setupParams.blendMode)
- {
- NRDebugger.Warning("[VideoCapture] AutoAdaptBlendMode : {0} => {1}", setupParams.blendMode, blendMode);
- setupParams.blendMode = blendMode;
- }
- }
- if (setupParams.frameRate <= 0)
- NRDebugger.Warning("[PhotoCapture] frameRate need to be bigger than zero");
- m_CaptureContext.StartCaptureMode(setupParams);
- var result = new VideoCaptureResult();
- result.resultType = CaptureResultType.Success;
- onVideoModeStartedCallback?.Invoke(result);
- }
- public void StartVideoModeAsync(CameraParameters setupParams, AudioState audioState, OnVideoModeStartedCallback onVideoModeStartedCallback, bool autoAdaptBlendMode = false)
- {
- setupParams.audioState = audioState;
- StartVideoModeAsync(setupParams, onVideoModeStartedCallback, autoAdaptBlendMode);
- }
- /// <summary> Stops recording asynchronous. </summary>
- /// <param name="onStoppedRecordingVideoCallback"> The on stopped recording video callback.</param>
- public void StopRecordingAsync(OnStoppedRecordingVideoCallback onStoppedRecordingVideoCallback)
- {
- var result = new VideoCaptureResult();
- if (!IsRecording)
- {
- result.resultType = CaptureResultType.UnknownError;
- onStoppedRecordingVideoCallback?.Invoke(result);
- }
- else
- {
- try
- {
- m_CaptureContext.StopCapture();
- IsRecording = false;
- result.resultType = CaptureResultType.Success;
- onStoppedRecordingVideoCallback?.Invoke(result);
- }
- catch (Exception)
- {
- result.resultType = CaptureResultType.UnknownError;
- onStoppedRecordingVideoCallback?.Invoke(result);
- throw;
- }
- }
- }
- /// <summary> Stops video mode asynchronous. </summary>
- /// <param name="onVideoModeStoppedCallback"> The on video mode stopped callback.</param>
- public void StopVideoModeAsync(OnVideoModeStoppedCallback onVideoModeStoppedCallback)
- {
- m_CaptureContext.StopCaptureMode();
- var result = new VideoCaptureResult();
- result.resultType = CaptureResultType.Success;
- onVideoModeStoppedCallback?.Invoke(result);
- }
- /// <summary> Contains the result of the capture request. </summary>
- public enum CaptureResultType
- {
- /// <summary>
- /// Specifies that the desired operation was successful.
- /// </summary>
- Success = 0,
- /// <summary>
- /// Specifies that an unknown error occurred.
- /// </summary>
- UnknownError = 1
- }
- /// <summary>
- /// Specifies what audio sources should be recorded while recording the video.
- /// </summary>
- public enum AudioState
- {
- /// <summary>
- /// Only include the mic audio in the video recording.
- /// </summary>
- MicAudio = 0,
- /// <summary>
- /// Only include the application audio in the video recording.
- /// </summary>
- ApplicationAudio = 1,
- ///// <summary>
- ///// Include both the application audio as well as the mic audio in the video recording.
- ///// </summary>
- ApplicationAndMicAudio = 2,
- /// <summary>
- /// Do not include any audio in the video recording.
- /// </summary>
- None = 3
- }
- /// <summary>
- /// A data container that contains the result information of a video recording operation. </summary>
- public struct VideoCaptureResult
- {
- /// <summary>
- /// A generic result that indicates whether or not the VideoCapture operation succeeded. </summary>
- public CaptureResultType resultType;
- /// <summary> The specific HResult value. </summary>
- public long hResult;
- /// <summary> Indicates whether or not the operation was successful. </summary>
- /// <value> True if success, false if not. </value>
- public bool success
- {
- get
- {
- return resultType == CaptureResultType.Success;
- }
- }
- }
- /// <summary> Called when the web camera begins recording the video. </summary>
- /// <param name="result"> Indicates whether or not video recording started successfully.</param>
- public delegate void OnStartedRecordingVideoCallback(VideoCaptureResult result);
- /// <summary> Called when a VideoCapture resource has been created. </summary>
- /// <param name="captureObject"> The VideoCapture instance.</param>
- public delegate void OnVideoCaptureResourceCreatedCallback(NRVideoCapture captureObject);
- /// <summary> Called when video mode has been started. </summary>
- /// <param name="result"> Indicates whether or not video mode was successfully activated.</param>
- public delegate void OnVideoModeStartedCallback(VideoCaptureResult result);
- /// <summary> Called when video mode has been stopped. </summary>
- /// <param name="result"> Indicates whether or not video mode was successfully deactivated.</param>
- public delegate void OnVideoModeStoppedCallback(VideoCaptureResult result);
- /// <summary> Called when the video recording has been saved to the file system. </summary>
- /// <param name="result"> Indicates whether or not video recording was saved successfully to the
- /// file system.</param>
- public delegate void OnStoppedRecordingVideoCallback(VideoCaptureResult result);
- }
- }
|