Search found 2 matches
- 2012-12-20T13:30:57-07:00
- Forum: Developers
- Topic: Removing the Green Screen From the image
- Replies: 12
- Views: 67340
Re: Removing the Green Screen From the image
thanks for the fast reply, we have ffmpeg splitting out the frames to images, ffmpeg -i video.mov imagefolder/pic%d.png working with image magick to pull the chroma key. It works but not great, we've tried convert test.png -fuzz 20% -transparent #5db442 out.png kind of blotchy, trying to figure out ...
- 2012-12-19T15:28:29-07:00
- Forum: Developers
- Topic: Removing the Green Screen From the image
- Replies: 12
- Views: 67340
Re: Removing the Green Screen From the image
we've got the concept of using GD to remove green from an image - how about removing from a video? In other words a user uploads a video - we pull the frames from the video - edit them indivdiually - then render them out again to get a video with the chroma key work done. Here's the catch - is it ...