Skip to content
Advertisement

Is there a way to convert HTML div to a video format (MP4 or any other) in Python/Django?

I am trying to render a HTML page and use a specific <div> inside it to convert it to video format.

Explanation:

I know HTML is static content but it is necessary for me to convert it to a video format (it is a requirement). I need to know if there is a way which can render a page and export it to a video format. It can either be a direct HTML to MP4 conversion or capture rendered div (Not record canvas) as an Image and then convert that image to the video format.

Technology Stack:
Django
Django templates
HTML
Javascript

Any help would be appreciated.

Advertisement

Answer

here is a rough procedure how to do that: (be careful I just copied the “idea” from my code an removed my specific stuff, so there might be typos or small inconsistencies)

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement