You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using multipart, I send a full jpeg frame every x ms. This allows me to display a video in an img html tag easily.
I was wondering if it is possible to do the same using Drogon. I'm having a hard time setting this up as there is no generate function. Also I can't indescriminately call response->write(frame) in my infinite loop that runs in a specific thread.
Can anyone provide some advice or an example on how to achieve that using html img tag ?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
I'm trying to build a motion jpeg streaming service using Drogon. The feature is quite simple using python here's an example :
Using multipart, I send a full jpeg frame every x ms. This allows me to display a video in an img html tag easily.
I was wondering if it is possible to do the same using Drogon. I'm having a hard time setting this up as there is no generate function. Also I can't indescriminately call response->write(frame) in my infinite loop that runs in a specific thread.
Can anyone provide some advice or an example on how to achieve that using html img tag ?
Thanks in advance.
The text was updated successfully, but these errors were encountered: