DECKLINKSDK.NET CP PACKAGE

Do you want to playback a movie through your Decklink® card? would you want to watermark your movies before sending them out to clients?
Our CP package enables you to do that and much more…! 

The CP package enables you play any movies supported by Blackmagic® or has the appropriate video decoder installed on your system.
Not only this, but you can also super impose a 32-bit image over the video being played. Standard movie controls are included as well as the ability
to seek freely throughout the video duration. (if supported by the video format) 

Internal Keying or External Keying is also supported, this enables you to overlay the 32-bit image frame over the incoming video feed. This feature
can be extended to go beyond creating image frames, by also overlaying 32-bit video files over the incoming feed. 

DecklinkSDK.Net enables you to:

Playback features

*feature available in the next release of DecklinkSDK.Net CP

Capture features Capture features

Applications

Example Code

The below sample c# code demonstrates playing a video file and overlaying a TGA file on it.

DecklinkCard aCard = BMDevice.GetAvailableDevices()[0];

DecklinkPlayback playback =

                 new DecklinkPlayback(aCard, lblPreview);

 

playback.FilePath = "sample.avi";

playback.LoopPlayback = false;

playback.EnableImageKeying = true;

playback.SetKeyImage("watermark.tga");

playback.Play();

//...

playback.Pause();