Beispiel #1
0
 /// <summary>
 /// Acquire a frame for encoding
 /// You will call Graphics::Blit on this frame
 /// </summary>
 public static Frame AcquireFrame()
 {
     if (!IsRecording)
     {
         Util.LogError("Cannot acquire frame when NatCorder is not recording");
         return(null);
     }
     return(Implementation.Acquire());
 }
Beispiel #2
0
 /// <summary>
 /// Stop recording a video
 /// </summary>
 public static void StopRecording()
 {
     if (!IsRecording)
     {
         Util.LogError("Cannot stop recording because NatCorder is not recording");
         return;
     }
     Implementation.StopRecording();
 }
Beispiel #3
0
 /// <summary>
 /// Commit a frame for encoding
 /// </summary>
 public static void CommitFrame(Frame frame)
 {
     if (!IsRecording)
     {
         Util.LogError("Cannot commit frame when NatCorder is not recording");
         RenderTexture.ReleaseTemporary(frame); // Release the frame
         return;
     }
     Implementation.Commit(frame);
 }
Beispiel #4
0
 /// <summary>
 /// Start recording a video with no audio
 /// </summary>
 /// <param name="configuration">Configuration for recording</param>
 /// <param name="saveCallback">Callback to be invoked when the video is saved</param>
 public static void StartRecording(Configuration configuration, SaveCallback saveCallback)
 {
     if (IsRecording)
     {
         Util.LogError("Cannot start recording because NatCorder is already recording");
         return;
     }
     if (saveCallback == null)
     {
         Util.LogError("Cannot record video without callback");
         return;
     }
     Implementation.StartRecording(configuration, saveCallback, null);
 }
Beispiel #5
0
 /// <summary>
 /// Start recording a video with audio
 /// </summary>
 /// <param name="configuration">Configuration for recording</param>
 /// <param name="saveCallback">Callback to be invoked when the video is saved</param>
 /// <param name="audioSource">Audio source for recording audio</param>
 public static void StartRecording(Configuration configuration, SaveCallback saveCallback, AudioSource audioSource)
 {
     if (IsRecording)
     {
         Util.LogError("Cannot start recording because NatCorder is already recording");
         return;
     }
     if (saveCallback == null)
     {
         Util.LogError("Cannot record video without callback");
         return;
     }
     if (audioSource == null)
     {
         Util.LogError("Cannot record video with null audio source");
         return;
     }
     Implementation.StartRecording(configuration, saveCallback, audioSource.gameObject.AddComponent <NatCorderAudio>());
 }