Page 1 of 1

How to Seperate Key and Fill signal through Code

PostPosted: Mon Jul 29, 2019 10:47 am
by ShilpiR_beesys
Hi....

I am using DeckLink Quad2 card and Blackmagic DeckLink SDK 10.11.4.. Can somebody please tell me how can i get the Key(Alpha channel) out and the fill out from the two different channels. Tried to run the GDIKeyer example but that is suppose is for the bypass .. please help

Re: How to Seperate Key and Fill signal through Code

PostPosted: Tue Jul 30, 2019 6:14 am
by Cameron Nichols
Hi Shilpi,

By default the GdiKeyer sample outputs internal key - where the key frame is blended on the input stream on a full-duplex device. To change this sample to fill/key mode - where pair of connectors output the fill and key - please make the following change to code:

GdiKeyer.cpp|line 392:
Code: Select all
//deckLinkKeyer->Enable(false);                     // Enable internal keying
deckLinkKeyer->Enable(true);                     // Enable fill/key keying


Regards
Cameron

Re: How to Seperate Key and Fill signal through Code

PostPosted: Fri Aug 02, 2019 11:15 am
by ShilpiR_beesys
Hi cameron ,

Thanks it worked for me