Recommendations for the Python library that can capture still images from Flash / HTML5 video?

Part of the web application being developed requires the ability to capture still images from Flash or HTML5 video played in a browser.

Is there a Python library that could help me with this task?

UPDATE

Actually, users of this web application should also be able to

  • Draw a crop window on top of the Flash / HTML5 video player
  • You can resize this window if necessary.
  • Capturing an image using a cropping frame
  • Saving and sending this image to the server

In addition, this video capture / capture tool should also be limited to the perimeter of the video frame. I don’t want users to get confused and potentially capture an image outside the frame of the video, because all we care about is the content of the video.

+4
source share
2 answers

If you know Python, http://pyjs.org may be helpful.

EDIT I ​​just saw there "Python" written by name, so you obviously know Python. My bad, I overdid it.

0
source

How to capture it inside Flash and send it as a BiteArray to the server?

+1
source

All Articles