Not so sure what is causing this, I've seen some forums talking about that it is a problem with cv2 itself. Either way there are some options to fix this. I can either
- Use another library to handle the recording and video feedback
- Try to fix this by putting the recording feedback window inside the canvas of customtkinter (how it is originally supposed to be) instead of waiting for the v2 release.
- Hot fix: Create a function that stiches the frozen video back togheter, like a repair tool of a crash manager, because the audio and video recordings are saved before the crash. All I need is a reference to the last saved folder and then check if there is an audio file. If there is all I need to do is find the corresponding video and call ffmpeg to process it again
I will probably go with option 3 tbh it's always good to have a crash manager anyway. When I have time I will look into solution 2.
Not so sure what is causing this, I've seen some forums talking about that it is a problem with cv2 itself. Either way there are some options to fix this. I can either
I will probably go with option 3 tbh it's always good to have a crash manager anyway. When I have time I will look into solution 2.