0

I have a PythonCard GUI Form with the Image, Signatue filelds. I need to capture the image from the Live stream,

I am trying to inject my live video as a pythoncard component like staticbox or staticArea

Does PythonCard have the inbuilt Video component or any alternate way to get into the GUI.

harihara
  • 75
  • 9

1 Answers1

0

You can try wxPython's MediaCtrl, but I don't think it works very well with streaming media. Instead, I would recommend a 3rd party widget called the MPlayerCtrl which wraps MPlayer. You can get it on PyPI

Here is a link for the documentation and I also wrote a tutorial for it. It should be noted that I didn't try to make it take screenshots. You'll have to do some research into it to find out if that is supported. If MPlayer can do it, than this wrapper should be able to as well.

Mike Driscoll
  • 32,629
  • 8
  • 45
  • 88