I need to develop a flex component which can take two videos and mix them using chroma keying. Is there library support in adobe flex for chroma keying. How can i get it done . Is there a sample code snippet for reference
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basically, the idea is, you don’t play the “blue-box-video”. Rather than that, every frame, you copy it’s content into a
BitmapDatausingBitmapData::draw. Then withBitmapData::thresholdor other methods, you try to cut out the background. The resultingBitmapDatais put on top of the other video.You might wanna have a look at PixelBender to get better results.
greetz
back2dos