1.
The client requests a video transformation from your server.
2.
Your server makes a POST request to the GoEnhanceAI API to initiate the video generation.
3.
The API returns an img_uuid
, which your server uses for subsequent requests.
4.
Your server acknowledges the client's request.
5.
Your server then enters a polling loop, checking the status every 5 seconds:If the status is "completed", it retrieves the video URL, downloads and stores the video, then notifies the client.
If the status is "failed", it notifies the client of the failure.
6.
Finally, when the client requests the processed video, your server serves it from local storage.