Пример #1
0
        /// <summary>
        /// Start recording.
        /// Gets correct arguments automatically.
        /// </summary>
        public async Task Start()
        {
            // Do before anything else to avoid some task thinking the wrong thing
            // Change status to recording
            RecordingStatus.ChangeStatus(RecordingStatus.Status.Recording);

            // Build args and start recording by sending args to ffmpeg
            args = ab.BuildArgs();
            await process.StartProcess(string.Join(" ", args.Select(x => x.Value)));
        }
Пример #2
0
        /// <summary>
        /// Stop recording.
        /// </summary>
        public async Task Stop()
        {
            // Stop recording process
            process.StopProcess();

            // Add video to PastRecordings
            await Recordings.Add(args["videoOutput"].Replace("\"", ""));

            // Do after anything else to avoid some task thinking the wrong thing
            // Update recording status to idle, this will automatically reset stopwatch
            RecordingStatus.ChangeStatus(RecordingStatus.Status.Idle);
        }