Skip to content

Instantly share code, notes, and snippets.

View visioforge's full-sized avatar

VisioForge visioforge

View GitHub Profile
@visioforge
visioforge / VideoCaptureMP4.cs
Last active July 21, 2021 20:28
5 lines of code sample - Video capture to MP4 - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
@visioforge
visioforge / ScreenCaptureMP4.cs
Last active July 22, 2021 14:07
5 lines of code sample - Screen capture to MP4 - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
@visioforge
visioforge / ScreenCaptureWMV.cs
Last active July 22, 2021 14:07
5 lines of code sample - Screen capture to WMV - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@visioforge
visioforge / VideoCaptureWMV.cs
Last active July 22, 2021 14:07
5 lines of code sample - Video capture to WMV - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@visioforge
visioforge / VideoCaptureAVI.cs
Last active July 22, 2021 14:07
5 lines of code sample - Video capture to AVI - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@visioforge
visioforge / ScreenCaptureAVI.cs
Last active July 22, 2021 14:06
5 lines of code sample - Screen capture to AVI - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@visioforge
visioforge / CameraPreviewFrameSave.cs
Last active July 22, 2021 14:06
5 lines of code sample - Video preview for web camera with frame capture - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@visioforge
visioforge / VideoCaptureWithTextOverlay.cs
Last active July 22, 2021 14:05
5 lines of code sample - Video capture from camera with text overlay - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
@visioforge
visioforge / IPCameraPreview.cs
Last active July 22, 2021 14:03
5 lines of code sample - IP camera preview - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.LAV.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.LAV.x86/
using System;
using System.Collections.Generic;
using System.ComponentModel;
@visioforge
visioforge / IPCameraCaptureMP4.cs
Last active July 22, 2021 14:05
5 lines of code sample - IP camera capture to MP4 - VisioForge Video Capture SDK .Net - https://www.visioforge.com/video-capture-sdk-net
// Required NuGet packages:
// https://www.nuget.org/packages/VisioForge.DotNet.VideoCapture/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.VideoCapture.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.MP4.x86/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.LAV.x64/
// https://www.nuget.org/packages/VisioForge.DotNet.Core.Redist.LAV.x86/
using System;