xvid dll's
i've write python project and using opencv to capture video from webcam and save it as avi with XVID codec xvid codec dll files are :xvidvfw.dll and xvidcore.dll which are in system32 how i can change the path of dll files in opencv ? i need to load that from beside my program
You can't, the lookup of dll files is dependant on your operating system. Basically windows (which uses dlls) looks for them in the following order.
So there are two things you could do:
But why would you specifically need to supply all this?