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
I have been trying out this library for a while now and on Windows, I've noticed that in the latest python and VLC updates, a few small errors have occurred.
vlc.py: line 173 - change to: dll = ctypes.CDLL(".\\" + libname) (fixes FileNotFoundError: 'libvlc.dll')
DroneVisionGUI: in Player class - add: (fixes closing errors and crashes)
def closeEvent(self, event):
event.accept()
self.close_video()
self.vlc_gui.close()
self.vlc_gui.destroy()
if (self.user_window_draw_thread is not None):
self.user_window_draw_thread.quit()
self.user_vision_thread.quit()
self.user_thread.quit()
sys.exit()
DroneVisionGUI: at the end of _start_video_buffering (line 390) add: sys.exit(app.exec_()) (helps close the window cleanly)
The only thing I cannot find the solution to is a flicker on the video feed where it displays the file path and a smaller version of the frame in between frames? I don't know whether it's a problem with PyQT5 or this library? thx
The text was updated successfully, but these errors were encountered:
I have been trying out this library for a while now and on Windows, I've noticed that in the latest python and VLC updates, a few small errors have occurred.
dll = ctypes.CDLL(".\\" + libname)
(fixes FileNotFoundError: 'libvlc.dll')sys.exit(app.exec_())
(helps close the window cleanly)The only thing I cannot find the solution to is a flicker on the video feed where it displays the file path and a smaller version of the frame in between frames? I don't know whether it's a problem with PyQT5 or this library? thx
The text was updated successfully, but these errors were encountered: