Beispiel #1
0
 public void OnEnable()
 {
     audioCapture = (AudioCapture)target;
 }
 private void Awake()
 {
     audioCapture = GetComponent <AudioCapture>();
     Application.runInBackground = true;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:Evereal.VideoCapture.VideoMuxing"/> class.
 /// </summary>
 /// <param name="videoCapture">Video capture.</param>
 /// <param name="audioCapture">Audio capture.</param>
 public VideoMuxing(VideoCapture videoCapture, AudioCapture audioCapture)
 {
     this.videoCapture = videoCapture;
     this.audioCapture = audioCapture;
 }