private async void btStart_Click(object sender, EventArgs e) { edLog.Text = string.Empty; if (!LoadImages()) { return; } var source = new ScreenCaptureSourceSettings { Left = 0, Right = _imageWidth, Top = 0, Bottom = _imageHeight, FrameRate = Convert.ToInt32(edVideoFrameRate.Text), Mode = VFScreenCaptureMode.Color }; VideoCapture1.Screen_Capture_Source = source; VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Mode = VFVideoCaptureMode.ScreenCapture; VideoCapture1.Output_Format = new VFMP4v8v10Output(); VideoCapture1.Output_Filename = edOutputFile.Text; VideoCapture1.Debug_Mode = cbDebug.Checked; await VideoCapture1.StartAsync(); }
private async void btStart_Click(object sender, EventArgs e) { // set debug settings VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Debug_Telemetry = cbTelemetry.Checked; mmLog.Clear(); // configure video source VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_Format = cbVideoInputFormat.Text; VideoCapture1.Video_CaptureDevice_Format_UseBest = cbUseBestVideoInputFormat.Checked; VideoCapture1.Video_CaptureDevice_FrameRate = Convert.ToDouble(cbVideoFrameRate.Text); // configure audio source VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = cbUseBestAudioInputFormat.Checked; VideoCapture1.Audio_CaptureDevice_Line = cbAudioInputLine.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = cbUseAudioInputFromVideoCaptureDevice.Checked; // set video preview mode VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; // start await VideoCapture1.StartAsync(); }
private async void btStart_Click(object sender, EventArgs e) { VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Debug_Telemetry = cbTelemetry.Checked; // configure source var screenSource = new ScreenCaptureSourceSettings(); screenSource.Mode = VFScreenCaptureMode.Screen; screenSource.FullScreen = rbScreenFullScreen.Checked; screenSource.Top = Convert.ToInt32(edScreenTop.Text); screenSource.Bottom = Convert.ToInt32(edScreenBottom.Text); screenSource.Left = Convert.ToInt32(edScreenLeft.Text); screenSource.Right = Convert.ToInt32(edScreenRight.Text); screenSource.DisplayIndex = Convert.ToInt32(cbScreenCaptureDisplayIndex.Text); screenSource.FrameRate = Convert.ToInt32(edScreenFrameRate.Text); screenSource.GrabMouseCursor = cbScreenCapture_GrabMouseCursor.Checked; screenSource.AllowDesktopDuplicationEngine = cbScreenCapture_DesktopDuplication.Checked; VideoCapture1.Screen_Capture_Source = screenSource; // audio capture if (cbAudioCapture.Checked) { VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_RecordAudio = true; // select first audio device with default parameters if (VideoCapture1.Audio_CaptureDevicesInfo.Any()) { VideoCapture1.Audio_CaptureDevice = VideoCapture1.Audio_CaptureDevicesInfo[0].Name; } } else { VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_RecordAudio = false; } // configure output if (cbCapture.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.ScreenCapture; VideoCapture1.Output_Format = new VFMP4v8v10Output(); VideoCapture1.Output_Filename = edOutput.Text; } else { VideoCapture1.Mode = VFVideoCaptureMode.ScreenPreview; } await VideoCapture1.StartAsync(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); tcMain.SelectedIndex = 4; if (rbVideoFile.Checked) { ConfigureMediaPlayer(); } else { ConfigureVideoCapture(); } // add face detection if (cbFDEnabled.Checked) { FaceDetectionAdd(); } // add car counter if (cbCCEnabled.Checked) { CarCounterAdd(); } // add car counter if (cbPDEnabled.Checked) { PedestrianDetectionAdd(); } //this.MediaPlayer1.Video_Effects_Enabled = true; // this.MediaPlayer1.Video_Effects_Clear(); // this.MediaPlayer1.Video_Effects_Add(new VFVideoEffectMosaic(true, 500)); if (rbVideoFile.Checked) { MediaPlayer1.Show(); VideoCapture1.Hide(); await MediaPlayer1.PlayAsync(); } else { MediaPlayer1.Hide(); VideoCapture1.Show(); await VideoCapture1.StartAsync(); } }
private async void btStart_Click(object sender, EventArgs e) { // set debug settings VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Debug_Telemetry = cbTelemetry.Checked; mmLog.Clear(); // configure video source VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_Format = cbVideoInputFormat.Text; VideoCapture1.Video_CaptureDevice_Format_UseBest = cbUseBestVideoInputFormat.Checked; VideoCapture1.Video_CaptureDevice_FrameRate = Convert.ToDouble(cbVideoFrameRate.Text); // disabe audio VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_RecordAudio = false; // set video preview mode VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; // set face tracking settings VideoCapture1.Face_Tracking = new FaceTrackingSettings { ColorMode = (CamshiftMode)cbFaceTrackingColorMode.SelectedIndex, Highlight = cbFaceTrackingCHL.Checked, MinimumWindowSize = int.Parse(edFaceTrackingMinimumWindowSize.Text), ScalingMode = (ObjectDetectorScalingMode) cbFaceTrackingScalingMode.SelectedIndex, SearchMode = (ObjectDetectorSearchMode) cbFaceTrackingSearchMode.SelectedIndex }; // start await VideoCapture1.StartAsync(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Video_Renderer.Zoom_Ratio = 0; VideoCapture1.Video_Renderer.Zoom_ShiftX = 0; VideoCapture1.Video_Renderer.Zoom_ShiftY = 0; VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Screen_Capture_Source = CreateScreenCaptureSource(); // audio source VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; // apply capture params VideoCapture1.Video_Effects_Enabled = false; VideoCapture1.Video_Effects_Clear(); VideoCapture1.Mode = VFVideoCaptureMode.ScreenCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 2; }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_OutputDevice = cbAudioOutputDevice.Text; if (cbRecordAudio.Checked) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = true; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture parameters VideoCapture1.Decklink_Source = new DecklinkSourceSettings { Name = cbDecklinkCaptureDevice.Text, VideoFormat = cbDecklinkCaptureVideoFormat.Text }; if (rbPreview.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.DecklinkSourcePreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.DecklinkSourceCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); // Audio processing VideoCapture1.Audio_Effects_Clear(-1); VideoCapture1.Audio_Effects_Enabled = true; VideoCapture1.Audio_Effects_Add(-1, VFAudioEffectType.Amplify, cbAudAmplifyEnabled.Checked, TimeSpan.Zero, TimeSpan.Zero); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 4; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Video_Renderer.Zoom_Ratio = 0; VideoCapture1.Video_Renderer.Zoom_ShiftX = 0; VideoCapture1.Video_Renderer.Zoom_ShiftY = 0; VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_OutputDevice = "Default DirectSound Device"; if (cbRecordAudio.Checked) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = true; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture parameters VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = cbUseAudioInputFromVideoCaptureDevice.Checked; VideoCapture1.Audio_OutputDevice = cbAudioOutputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = cbUseBestAudioInputFormat.Checked; VideoCapture1.Video_CaptureDevice_Format_UseBest = cbUseBestVideoInputFormat.Checked; VideoCapture1.Video_CaptureDevice_Format = cbVideoInputFormat.Text; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; if (cbFramerate.SelectedIndex != -1) { VideoCapture1.Video_CaptureDevice_FrameRate = (float)Convert.ToDouble(cbFramerate.Text); } if (rbPreview.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_MergeImageLogos = cbMergeImageLogos.Checked; VideoCapture1.Video_Effects_MergeTextLogos = cbMergeTextLogos.Checked; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); // Audio processing VideoCapture1.Audio_Effects_Clear(-1); VideoCapture1.Audio_Effects_Enabled = true; VideoCapture1.Audio_Effects_Add(-1, VFAudioEffectType.Amplify, cbAudAmplifyEnabled.Checked, TimeSpan.Zero, TimeSpan.Zero); VideoCapture1.Audio_Effects_Add(-1, VFAudioEffectType.Equalizer, cbAudEqualizerEnabled.Checked, TimeSpan.Zero, TimeSpan.Zero); VideoCapture1.Audio_Effects_Add(-1, VFAudioEffectType.TrueBass, cbAudTrueBassEnabled.Checked, TimeSpan.Zero, TimeSpan.Zero); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 4; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Video_Renderer.Zoom_Ratio = 0; VideoCapture1.Video_Renderer.Zoom_ShiftX = 0; VideoCapture1.Video_Renderer.Zoom_ShiftY = 0; VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_OutputDevice = "Default DirectSound Device"; if (cbRecordAudio.Checked) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = true; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture parameters VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = cbUseAudioInputFromVideoCaptureDevice.Checked; VideoCapture1.Audio_OutputDevice = cbAudioOutputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = cbUseBestAudioInputFormat.Checked; VideoCapture1.Video_CaptureDevice_Format_UseBest = cbUseBestVideoInputFormat.Checked; VideoCapture1.Video_CaptureDevice_Format = cbVideoInputFormat.Text; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; if (cbFramerate.SelectedIndex != -1) { VideoCapture1.Video_CaptureDevice_FrameRate = (float)Convert.ToDouble(cbFramerate.Text); } VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 2: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 3: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 4: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 5: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } // separate capture settings VideoCapture1.SeparateCapture_Enabled = true; if (rbSeparateCaptureStartManually.Checked) { VideoCapture1.SeparateCapture_Mode = VFSeparateCaptureMode.Normal; VideoCapture1.SeparateCapture_AutostartCapture = false; } else if (rbSeparateCaptureSplitByDuration.Checked) { VideoCapture1.SeparateCapture_Mode = VFSeparateCaptureMode.SplitByDuration; VideoCapture1.SeparateCapture_AutostartCapture = true; VideoCapture1.SeparateCapture_TimeThreshold = TimeSpan.FromMilliseconds(Convert.ToInt32(edSeparateCaptureDuration.Text)); } else if (rbSeparateCaptureSplitBySize.Checked) { VideoCapture1.SeparateCapture_Mode = VFSeparateCaptureMode.SplitByFileSize; VideoCapture1.SeparateCapture_AutostartCapture = true; VideoCapture1.SeparateCapture_FileSizeThreshold = Convert.ToInt32(edSeparateCaptureFileSize.Text) * 1024 * 1024; } //VideoCapture1.Video_Effects_Enabled = true; //VideoCapture1.Video_Effects_Clear(); //var tsEffect = new VFVideoEffectTextLogo(true) { Mode = TextLogoMode.Timestamp }; //VideoCapture1.Video_Effects_Add(tsEffect); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 4; tmRecording.Start(); }
private async void btStart_Click(object sender, RoutedEventArgs e) { mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Debug_Mode = cbDebugMode.IsChecked == true; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_OutputDevice = "Default DirectSound Device"; if (cbRecordAudio.IsChecked == true) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = true; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture params VideoCapture1.Video_Renderer.Video_Renderer = VFVideoRendererWPF.WPF; VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = cbUseAudioInputFromVideoCaptureDevice.IsChecked == true; VideoCapture1.Audio_OutputDevice = cbAudioOutputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = cbUseBestAudioInputFormat.IsChecked == true; VideoCapture1.Video_CaptureFormat = cbVideoInputFormat.Text; VideoCapture1.Video_CaptureFormat_UseBest = cbUseBestVideoInputFormat.IsChecked == true; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; if (cbFramerate.SelectedIndex != -1) { VideoCapture1.Video_FrameRate = (float)Convert.ToDouble(cbFramerate.Text); } if (rbPreview.IsChecked == true) { VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 2: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 3: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 4: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 5: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 6: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_MergeImageLogos = cbMergeImageLogos.IsChecked == true; VideoCapture1.Video_Effects_MergeTextLogos = cbMergeTextLogos.IsChecked == true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, RoutedEventArgs e) { mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Debug_Mode = cbDebugMode.IsChecked == true; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; // from screen bool allScreens = cbScreenCaptureDisplayIndex.SelectedIndex == cbScreenCaptureDisplayIndex.Items.Count - 1; if (allScreens) { int n = cbScreenCaptureDisplayIndex.Items.Count - 1; VideoCapture1.Screen_Capture_Source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Items[0]), true); if (n > 1) { for (int i = 1; i < n; i++) { var source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Items[i]), true); VideoCapture1.PIP_Mode = VFPIPMode.Horizontal; VideoCapture1.PIP_Sources_Add_ScreenSource(source, 0, 0, 0, 0); } } } else { VideoCapture1.Screen_Capture_Source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Text), false); } if (cbRecordAudio.IsChecked == true) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; VideoCapture1.Audio_CaptureDevice_Line = cbAudioInputLine.Text; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture parameters VideoCapture1.Video_Renderer.Video_Renderer = VFVideoRendererWPF.WPF; VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); if (rbPreview.IsChecked == true) { VideoCapture1.Mode = VFVideoCaptureMode.ScreenPreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.ScreenCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 2: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 3: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 4: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 5: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 6: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; var bmp = new Bitmap(Properties.Resources._1); VideoCapture1.Push_Source = new PushSourceSettings { VideoPresent = true, VideoWidth = bmp.Width, VideoHeight = bmp.Height, VideoFrameRate = 25.0f }; bmp.Dispose(); if (rbPreview.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.PushSourcePreview; } else if (rbCapture.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.PushSourceCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 2; tmRecording.Start(); await PushImagesAsync(); }
private async void btStart_Click(object sender, RoutedEventArgs e) { #if !NETCOREAPP if (onvifControl != null) { onvifControl.Disconnect(); onvifControl.Dispose(); onvifControl = null; btONVIFConnect.Content = "Connect"; } #endif mmLog.Clear(); VideoCapture1.Video_Sample_Grabber_Enabled = true; VideoCapture1.Debug_Mode = cbDebugMode.IsChecked == true; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_RecordAudio = cbIPAudioCapture.IsChecked == true; VideoCapture1.Audio_PlayAudio = cbIPAudioCapture.IsChecked == true; VideoCapture1.Video_Renderer.Video_Renderer = VFVideoRendererWPF.WPF; // source VideoCapture1.IP_Camera_Source = new IPCameraSourceSettings { URL = edIPUrl.Text }; switch (cbIPCameraType.SelectedIndex) { case 0: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_VLC; break; case 1: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_FFMPEG; break; case 2: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_LAV; break; case 3: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_Live555; break; case 4: VideoCapture1.IP_Camera_Source.Type = VFIPSource.HTTP_FFMPEG; break; case 5: VideoCapture1.IP_Camera_Source.Type = VFIPSource.MMS_WMV; break; case 6: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_UDP_FFMPEG; break; case 7: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_TCP_FFMPEG; break; case 8: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_HTTP_FFMPEG; break; case 9: VideoCapture1.IP_Camera_Source.Type = VFIPSource.HTTP_MJPEG_LowLatency; cbIPAudioCapture.IsChecked = false; VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; break; case 10: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_LowLatency; VideoCapture1.IP_Camera_Source.RTSP_LowLatency_UseUDP = false; break; case 11: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_LowLatency; VideoCapture1.IP_Camera_Source.RTSP_LowLatency_UseUDP = true; break; case 12: VideoCapture1.IP_Camera_Source.Type = VFIPSource.NDI; break; } VideoCapture1.IP_Camera_Source.AudioCapture = cbIPAudioCapture.IsChecked == true; VideoCapture1.IP_Camera_Source.Login = edIPLogin.Text; VideoCapture1.IP_Camera_Source.Password = edIPPassword.Text; VideoCapture1.IP_Camera_Source.VLC_ZeroClockJitterEnabled = cbVLCZeroClockJitter.IsChecked == true; VideoCapture1.IP_Camera_Source.VLC_CustomLatency = Convert.ToInt32(edVLCCacheSize.Text); VideoCapture1.IP_Camera_Source.ForcedFramerate = Convert.ToDouble(edIPForcedFramerate.Text); VideoCapture1.IP_Camera_Source.ForcedFramerate_InstanceID = edIPForcedFramerateID.Text[0]; if (cbIPCameraONVIF.IsChecked == true) { VideoCapture1.IP_Camera_Source.ONVIF_Source = true; if (cbONVIFProfile.SelectedIndex != -1) { VideoCapture1.IP_Camera_Source.ONVIF_SourceProfile = cbONVIFProfile.Text; } } if (cbIPDisconnect.IsChecked == true) { VideoCapture1.IP_Camera_Source.DisconnectEventInterval = 5000; } if (rbPreview.IsChecked == true) { VideoCapture1.Mode = VFVideoCaptureMode.IPPreview; } else if (rbCapture.IsChecked == true) { VideoCapture1.Mode = VFVideoCaptureMode.IPCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, RoutedEventArgs e) { VideoCapture1.Video_Sample_Grabber_Enabled = true; mmLog.Clear(); VideoCapture1.Debug_Mode = cbDebugMode.IsChecked == true; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; if (cbRecordAudio.IsChecked == true) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = false; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } VideoCapture1.Video_Renderer.Video_Renderer = VFVideoRendererWPF.WPF; VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = true; VideoCapture1.Audio_OutputDevice = cbAudioOutputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = true; VideoCapture1.Video_CaptureFormat = cbVideoInputFormat.Text; VideoCapture1.Video_CaptureFormat_UseBest = cbUseBestVideoInputFormat.IsChecked == true; if (cbFramerate.SelectedIndex != -1) { VideoCapture1.Video_FrameRate = (float)Convert.ToDouble(cbFramerate.Text); } if (rbPreview.IsChecked == true) { VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { VideoCapture1.Output_Format = new VFDirectCaptureDVOutput(); break; } case 5: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 6: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 7: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 8: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 10: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 11: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 12: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 13: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { #if !NETCOREAPP if (onvifControl != null) { onvifControl.Disconnect(); onvifControl.Dispose(); onvifControl = null; btONVIFConnect.Text = "Connect"; } #endif mmLog.Clear(); VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Audio_RecordAudio = cbIPAudioCapture.Checked; VideoCapture1.Audio_PlayAudio = cbIPAudioCapture.Checked; VideoCapture1.Video_Renderer_SetAuto(); VideoCapture1.Video_Sample_Grabber_Enabled = true; // source VideoCapture1.IP_Camera_Source = new IPCameraSourceSettings { URL = cbIPURL.Text }; switch (cbIPCameraType.SelectedIndex) { case 0: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_VLC; break; case 1: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_FFMPEG; break; case 2: VideoCapture1.IP_Camera_Source.Type = VFIPSource.Auto_LAV; break; case 3: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_Live555; break; case 4: VideoCapture1.IP_Camera_Source.Type = VFIPSource.HTTP_FFMPEG; break; case 5: VideoCapture1.IP_Camera_Source.Type = VFIPSource.MMS_WMV; break; case 6: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_UDP_FFMPEG; break; case 7: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_TCP_FFMPEG; break; case 8: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_HTTP_FFMPEG; break; case 9: { // audio not supported VideoCapture1.IP_Camera_Source.Type = VFIPSource.HTTP_MJPEG_LowLatency; VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; cbIPAudioCapture.Checked = false; } break; case 10: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_LowLatency; VideoCapture1.IP_Camera_Source.RTSP_LowLatency_UseUDP = false; break; case 11: VideoCapture1.IP_Camera_Source.Type = VFIPSource.RTSP_LowLatency; VideoCapture1.IP_Camera_Source.RTSP_LowLatency_UseUDP = true; break; case 12: VideoCapture1.IP_Camera_Source.Type = VFIPSource.NDI; break; } VideoCapture1.IP_Camera_Source.AudioCapture = cbIPAudioCapture.Checked; VideoCapture1.IP_Camera_Source.Login = edIPLogin.Text; VideoCapture1.IP_Camera_Source.Password = edIPPassword.Text; VideoCapture1.IP_Camera_Source.VLC_ZeroClockJitterEnabled = cbVLCZeroClockJitter.Checked; VideoCapture1.IP_Camera_Source.VLC_CustomLatency = Convert.ToInt32(edVLCCacheSize.Text); if (cbIPCameraONVIF.Checked) { VideoCapture1.IP_Camera_Source.ONVIF_Source = true; if (cbONVIFProfile.SelectedIndex != -1) { VideoCapture1.IP_Camera_Source.ONVIF_SourceProfile = cbONVIFProfile.Text; } } if (rbPreview.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.IPPreview; } else if (rbCapture.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.IPCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 2: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 3: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 4: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 5: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 6: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Video_Renderer.Zoom_Ratio = 0; VideoCapture1.Video_Renderer.Zoom_ShiftX = 0; VideoCapture1.Video_Renderer.Zoom_ShiftY = 0; VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Video_Sample_Grabber_Enabled = true; // from screen bool allScreens = cbScreenCaptureDisplayIndex.SelectedIndex == cbScreenCaptureDisplayIndex.Items.Count - 1; if (allScreens) { int n = cbScreenCaptureDisplayIndex.Items.Count - 1; VideoCapture1.Screen_Capture_Source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Items[0]), true); if (n > 1) { for (int i = 1; i < n; i++) { var source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Items[i]), true); VideoCapture1.PIP_Mode = VFPIPMode.Horizontal; VideoCapture1.PIP_Sources_Add_ScreenSource(source, 0, 0, 0, 0); } } } else { VideoCapture1.Screen_Capture_Source = CreateScreenCaptureSource( Convert.ToInt32(cbScreenCaptureDisplayIndex.Text), false); } // audio source if (cbRecordAudio.Checked) { VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; VideoCapture1.Audio_CaptureDevice_Line = cbAudioInputLine.Text; } else { VideoCapture1.Audio_RecordAudio = false; VideoCapture1.Audio_PlayAudio = false; } // apply capture params VideoCapture1.Video_Effects_Enabled = true; VideoCapture1.Video_Effects_Clear(); lbLogos.Items.Clear(); ConfigureVideoEffects(); if (rbPreview.Checked) { VideoCapture1.Mode = VFVideoCaptureMode.ScreenPreview; } else { VideoCapture1.Mode = VFVideoCaptureMode.ScreenCapture; VideoCapture1.Output_Filename = edOutput.Text; switch (cbOutputFormat.SelectedIndex) { case 0: { var aviOutput = new VFAVIOutput(); SetAVIOutput(ref aviOutput); VideoCapture1.Output_Format = aviOutput; break; } case 1: { var mkvOutput = new VFMKVv1Output(); SetMKVOutput(ref mkvOutput); VideoCapture1.Output_Format = mkvOutput; break; } case 2: { var wmvOutput = new VFWMVOutput(); SetWMVOutput(ref wmvOutput); VideoCapture1.Output_Format = wmvOutput; break; } case 3: { var dvOutput = new VFDVOutput(); SetDVOutput(ref dvOutput); VideoCapture1.Output_Format = dvOutput; break; } case 4: { var webmOutput = new VFWebMOutput(); SetWebMOutput(ref webmOutput); VideoCapture1.Output_Format = webmOutput; break; } case 5: { var ffmpegDLLOutput = new VFFFMPEGDLLOutput(); SetFFMPEGDLLOutput(ref ffmpegDLLOutput); VideoCapture1.Output_Format = ffmpegDLLOutput; break; } case 6: { var ffmpegOutput = new VFFFMPEGEXEOutput(); SetFFMPEGEXEOutput(ref ffmpegOutput); VideoCapture1.Output_Format = ffmpegOutput; break; } case 7: { var mp4Output = new VFMP4v8v10Output(); SetMP4Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 8: { var mp4Output = new VFMP4v11Output(); SetMP4v11Output(ref mp4Output); VideoCapture1.Output_Format = mp4Output; break; } case 9: { var gifOutput = new VFAnimatedGIFOutput(); SetGIFOutput(ref gifOutput); VideoCapture1.Output_Format = gifOutput; break; } case 10: { var encOutput = new VFMP4v8v10Output(); SetMP4Output(ref encOutput); encOutput.Encryption = true; encOutput.Encryption_Format = VFEncryptionFormat.MP4_H264_SW_AAC; VideoCapture1.Output_Format = encOutput; break; } case 11: { var tsOutput = new VFMPEGTSOutput(); SetMPEGTSOutput(ref tsOutput); VideoCapture1.Output_Format = tsOutput; break; } case 12: { var movOutput = new VFMOVOutput(); SetMOVOutput(ref movOutput); VideoCapture1.Output_Format = movOutput; break; } } } await VideoCapture1.StartAsync(); tcMain.SelectedIndex = 3; tmRecording.Start(); }
private async void btStart_Click(object sender, EventArgs e) { mmLog.Clear(); VideoCapture1.Debug_Mode = cbDebugMode.Checked; VideoCapture1.Debug_Dir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\"; VideoCapture1.Mode = VFVideoCaptureMode.VideoPreview; VideoCapture1.Audio_CaptureDevice = cbAudioInputDevice.Text; VideoCapture1.Audio_CaptureDevice_Format = cbAudioInputFormat.Text; VideoCapture1.Audio_CaptureDevice_Line = cbAudioInputLine.Text; VideoCapture1.Audio_CaptureDevice_Format_UseBest = cbUseBestAudioInputFormat.Checked; VideoCapture1.Video_CaptureDevice = cbVideoInputDevice.Text; VideoCapture1.Video_CaptureDevice_IsAudioSource = cbUseAudioInputFromVideoCaptureDevice.Checked; VideoCapture1.Video_CaptureDevice_Format_UseBest = cbUseBestVideoInputFormat.Checked; VideoCapture1.Video_CaptureDevice_Format = cbVideoInputFormat.Text; if (cbFramerate.SelectedIndex != -1) { VideoCapture1.Video_CaptureDevice_FrameRate = Convert.ToDouble(cbFramerate.Text, CultureInfo.CurrentCulture); } VideoCapture1.Audio_RecordAudio = true; VideoCapture1.Audio_PlayAudio = false; VideoCapture1.Timeshift_Settings = new TimeshiftSettings { Player_Screen = MediaPlayer1, TempFolder = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\VisioForge\\SBE\\", Player_AudioOutput_Enabled = cbPlayerPlayAudio.Checked }; var mp4Settings = new VFMP4v8v10Output { Video = { IDR_Period = 5 } }; VideoCapture1.Timeshift_Settings.EncodingSettings = mp4Settings; switch (cbOutputFormat.SelectedIndex) { case 0: break; case 1: { VideoCapture1.Output_Filename = edOutput.Text; VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; var output = new VFAVIOutput(); VideoCapture1.Output_Format = output; } break; case 2: { VideoCapture1.Output_Filename = edOutput.Text; VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; var output = new VFMP4v8v10Output(); VideoCapture1.Output_Format = output; } break; case 3: { VideoCapture1.Output_Filename = edOutput.Text; VideoCapture1.Mode = VFVideoCaptureMode.VideoCapture; var output = new VFWebMOutput(); VideoCapture1.Output_Format = output; } break; } await VideoCapture1.StartAsync(); timer1.Interval = 1000; timer1.Enabled = true; }