ScreenRecorderLib 6.5.1

dotnet add package ScreenRecorderLib --version 6.5.1
                    
NuGet\Install-Package ScreenRecorderLib -Version 6.5.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ScreenRecorderLib" Version="6.5.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ScreenRecorderLib" Version="6.5.1" />
                    
Directory.Packages.props
<PackageReference Include="ScreenRecorderLib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ScreenRecorderLib --version 6.5.1
                    
#r "nuget: ScreenRecorderLib, 6.5.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=ScreenRecorderLib&version=6.5.1
                    
Install ScreenRecorderLib as a Cake Addin
#tool nuget:?package=ScreenRecorderLib&version=6.5.1
                    
Install ScreenRecorderLib as a Cake Tool

ScreenRecorderLib

A .NET library for screen recording in Windows, using native Microsoft Media Foundation for realtime encoding to h264 video or PNG images. This library requires Windows 8 or higher to function, as well as Visual C++ Redistributable x64 or x86 installed, depending on platform compiled for. This library also requires Media Foundation to work, which have to be installed from Server Manager if run on Windows Server, or from the respective "Media Feature Pack" if run on a Windows N or KN version.

Available on NuGet.

Basic usage:

This will start a video recording to a file, using the default settings:

        using ScreenRecorderLib;
        
        Recorder _rec;
        void CreateRecording()
        {
            string videoPath = Path.Combine(Path.GetTempPath(), "test.mp4");
            _rec = Recorder.CreateRecorder();
            _rec.OnRecordingComplete += Rec_OnRecordingComplete;
            _rec.OnRecordingFailed += Rec_OnRecordingFailed;
            _rec.OnStatusChanged += Rec_OnStatusChanged;
	    //Record to a file
	    string videoPath = Path.Combine(Path.GetTempPath(), "test.mp4");
            _rec.Record(videoPath);
        }
        void EndRecording()
        {
            _rec.Stop(); 
        }
        private void Rec_OnRecordingComplete(object sender, RecordingCompleteEventArgs e)
        {
	    //Get the file path if recorded to a file
            string path = e.FilePath;	
        }
        private void Rec_OnRecordingFailed(object sender, RecordingFailedEventArgs e)
        {
            string error = e.Error;
        }
        private void Rec_OnStatusChanged(object sender, RecordingStatusEventArgs e)
        {
            RecorderStatus status = e.Status;
        }

For more info and examples, see the quickstart guide, or check out the sample projects.

Donation

If this project is useful to you, please consider supporting the development with a donation 😃

paypal

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ScreenRecorderLib:

Package Downloads
Selenium.QuickStart

QuickStart your web testing automation focusing only on what is important, being productive. Once you set your solution to x86 or x64, inherit a class and change your app.config as you want, this will provide an automatic Selenium WebDriver setup and session management, ExtentReports (Including Klov) to save test execution results, screenshot, video recording and email sending functionalities built in and ready to use with parametrizations you can set through an app.config. For installing this package successfully, your solution should be set to x86 instead of AnyCPU.

ScreenRecordingSDK

A .NET SDK for screen recording and uploading to AWS S3.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.5.1 2,636 1/29/2025
6.5.0 873 1/22/2025 6.5.0 is deprecated because it has critical bugs.
6.4.0 17,566 11/24/2024
6.3.0 5,666 9/27/2024
6.2.0 4,794 8/20/2024
6.1.0 4,467 6/4/2024
6.0.0 24,551 2/15/2024
5.4.0 10,034 11/17/2023
5.3.1 90,002 9/6/2023
5.3.0 89,140 6/23/2023
5.2.0 28,407 2/18/2023
5.1.4 18,606 9/15/2022
5.1.3 6,387 6/26/2022
5.1.2 13,344 4/23/2022
5.1.1 3,709 3/8/2022
5.1.0 7,069 2/8/2022
5.0.0 2,750 1/20/2022
3.2.0 7,962 1/20/2022
3.1.2 19,079 8/29/2021
3.1.1 52,128 2/4/2021
3.0.2 244,214 11/27/2020
3.0.1 1,246 11/23/2020
3.0.0 1,535 11/12/2020
2.9.1 1,495 11/3/2020
2.8.0 1,419 10/14/2020
2.7.0 1,302 10/5/2020
2.6.0 6,282 9/2/2020
2.5.0 4,306 7/30/2020
2.0.0 10,377 5/12/2020
1.9.0 2,263 3/19/2020
1.8.0 1,855 3/6/2020
1.7.0 46,311 1/28/2020
1.6.0 3,439 11/7/2019
1.5.0 13,074 10/4/2019
1.4.0 1,392 9/29/2019
1.3.0 1,800 9/15/2019
1.2.0 1,677 8/16/2019
1.1.13 2,203 5/23/2019
1.1.12 1,878 4/21/2019
1.1.11 1,643 3/25/2019
1.1.10 1,674 3/18/2019
1.1.7 1,673 1/23/2019
1.1.5 12,050 11/8/2018
1.1.4 3,310 10/21/2018
1.1.2 2,859 5/30/2018
1.1.1 128,586 5/6/2018
1.1.0 1,565 4/21/2018
1.0.9 5,356 4/10/2018
1.0.8 1,671 3/26/2018
1.0.7 1,544 3/20/2018
1.0.6 1,483 2/13/2018
1.0.5 1,531 2/9/2018
1.0.4 1,431 2/1/2018
1.0.3 1,468 1/20/2018
1.0.2 1,556 1/4/2018
1.0.1 1,462 1/1/2018
1.0.0 1,522 1/1/2018

• Fixed bug where monitors with negative coordinates (to the left of main monitor) did not record properly.